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
If you want you can pass new_class to the label doing something like:
new_class
<%= f.collection_check_boxes attribute, collection, value_method, text_method do |b| b.label(class: 'new_class') {b.check_box + b.text} end %>