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
Try the following code:
f.time_zone_select :time_zone, nil, {}, {:class => 'classname'}