I’m trying to build a rails app and simple_form looks to be a really useful gem. Problem is that I am using twitter bootstrap css to do the styling and the simple_form doesn’t allow you to specify the layout of the html.
Can anyone tell me how I can conform the simple_form html into the format bootstrap css wants?
Note: This answer only applies to SimpleForm < 2.0
Start with this in
config/initializers/simple_form.rb:Then there’s space missing between the label element and the input, which you can add with this:
There’s probably more, but it’s a start.