From 38483a9ba7e19a05170b1ea45415427c2c37f715 Mon Sep 17 00:00:00 2001 From: Ricky Barrette Date: Mon, 21 Jan 2013 23:13:11 -0500 Subject: [PATCH] fixed post body textarea width in post form --- app/views/posts/_form.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/posts/_form.html.erb b/app/views/posts/_form.html.erb index 379f7b4..482c155 100755 --- a/app/views/posts/_form.html.erb +++ b/app/views/posts/_form.html.erb @@ -9,7 +9,7 @@ <% flash.now[:error] = @post.errors.full_messages.join(', and ') %> <% end %> <%= f.label :body %> - <%= f.text_area :body, :width => "80%", :rows => 15 %> + <%= f.text_area :body, :style => "width:98%", :rows => 15 %>