Search code examples
ruby-on-railsform-helpers

Applying CSS class on time_zone_select


Is it possible to provide a CSS class for the time_zone_select FormHelper in Rails 3. I currently have something like

f.time_zone_select :time_zone 

Have tried options like -

f.time_zone_select :time_zone, nil, :class => 'classname'

But that does not work


Solution

  • Try the following code:

    f.time_zone_select :time_zone, nil, {}, {:class => 'classname'}