using simple_form we can change class of a label using:
simple_form
label_html => {:class => \"myclass\"}
but how do we do the same when
You should be able to set :input_html on your form input.
Somthing like:
f.input :something, :as => :check_box, :input_html => { :class => "myclass" }
ian.