I been trying to apply some CSS classes to collection_check_boxes but I can\'t get it to work. Right now I doing this:
<
Try it like this:
<%= f.collection_check_boxes(:brand_ids, Brand.all, :id, :name) do |b| %>
<%= b.label class:"label-checkbox" do%>
<%=b.check_box + b.text%>
<%end%>
<% end %>
A little shorter to use an inline block
<%= f.collection_check_boxes(:brand_ids, Brand.all, :id, :name) do |b| %>
<%= b.label(class:"label-checkbox") { b.check_box + b.text } %>
<% end %>