I am trying to customize this part of code in my Rails3 application
<%= f.submit "Create my account", :class => "btn btn-small btn-primary btn-inverse" %>
<%= f.file_field :photo %>
into this:
<%= f.submit "Create my account", :class => "btn btn-small btn-primary btn-inverse" %>
<%= f.file_field :photo, :class => "btn btn-small btn-primary btn-inverse" %>
but the file_field doesnt not seem to respond to customization.
Can somebody help me in this one?