Changing text input size with Zurb Foundation (Rails 4.0) -
i attempted following:
<%= f.text_field :text, :style => "font-size:40px"%>
this increases font size, not input box without foundation. there way within foundation without changing global default?
i want 1 input field.
if not mistaken, think can set size.
try
<%= f.text_field :text, :size => 20 %>
Comments
Post a Comment