I use a simple gem form inside a table
I want to adjust the width of each element of a simple form form, can I do this?
I tried the following but it does not work
<td><%= listing.name %></td> <td><%= f.input :suite, :input_html => { :size => 10, :maxlength => 10 } %></td>
I looked at the simpleform documentation here, but couldn't figure out how to specifically set the width. This is what my form inside the table looks like. I would like to make the columns narrower.
As you can see, the width of the columns is very wide. Please advise how to make them suitable so that they do not take up too much space.
source share