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

link|improve this question

31% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Try the following code:

f.time_zone_select :time_zone, nil, {}, {:class => 'classname'}
link|improve this answer
thanks that worked like charm. – Sam Wilder Nov 9 '11 at 4:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.