Topic: Changing rows and cols for text_fields attribute with CSS
Hello I was wondering if their was a way to set the rows and cols attribute of a text field with css?
I don't mean the size because the text will still only be one line. If there is not a way I tried it with the rails forum helper but it didn't change the field.
<%= f.text_field :content %>
and
<%= f.text_field :content, :rows => 15, :cols => 80 %>
results in the same size field
I guess what I am really asking is if any one knows how to use the forum helper to make large text fields for things like edit your profile or write a post actions.