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?

link|improve this question

feedback

8 Answers

up vote 19 down vote accepted

Note: This answer only applies to SimpleForm < 2.0

Start with this in config/initializers/simple_form.rb:

SimpleForm.form_class = nil
SimpleForm.wrapper_class = 'clearfix'
SimpleForm.wrapper_error_class = 'error'
SimpleForm.error_class = 'help-inline'

Then there's space missing between the label element and the input, which you can add with this:

label {
  margin-right: 20px;
}

There's probably more, but it's a start.

link|improve this answer
Looks good only thing I would add in case of conflicts with simple_form's template: config.form_class = nil – jevy Sep 12 '11 at 15:16
@jevy Thanks, added it to my answer. – robinst Sep 15 '11 at 18:34
here is an example repo: github.com/rafaelfranca/simple_form-bootstrap – NARKOZ Sep 30 '11 at 20:45
Just to warn those who are working with SimpleForm v2.. some of these settings have changed and no longer exist. – Marco Nov 26 '11 at 21:49
feedback

Simple form 2.0 is bootstrap-aware:

rails generate simple_form:install --bootstrap
link|improve this answer
feedback

I wrote a gem to do exactly this. It's not simple_form, but it should work fine side-by-side: twitter_bootstrap_form_for.

link|improve this answer
does this modifies scaffold generated forms as well ? – rtdp Oct 17 '11 at 16:43
No. Scaffolding isn't meant to be pretty. – Stephen Touset Oct 18 '11 at 20:11
feedback

I recently had the same problem and tried out the combination of bootstrap-sass and formtastic-bootstrap. It works with the exactly same code as the code for formtastic and shows even error messages as expected.

bootstrap-sass also works with Rails 3.1 Asset Pipeline and Rails 3.0. formtastic-bootstrap is tested with RSpec so I think this is a nice way to go!

link|improve this answer
I had to upvote this great competing answer ;) – Michael Durrant Nov 17 '11 at 16:31
feedback

simple_form allows for a css class (Passing in :html => {:class => nil} will result in only a "simple_form" class.).
n.b. This was added on 7/25/2011 so many existing downloads and documentation will not have it. You could also wrap it in a div that specifies a style.

You can also always style an individual element with code such as

<%= f.input :username, :label_html => { :class => 'my_class' } %>

link|improve this answer
feedback

Here's the full config (config/initializers/simple_form.rb):

SimpleForm.setup do |config|
  config.hint_class = 'help-block'
  config.error_class = 'help-inline'
  config.wrapper_class = 'clearfix'
  config.wrapper_error_class = 'error'
  config.label_text = lambda { |label, required| "#{label} #{required}" }
  config.form_class = nil
end
link|improve this answer
feedback

I found this, seems working fine https://github.com/rafaelfranca/simple_form-bootstrap don't known about tight integration

link|improve this answer
feedback

If you use SimpleForm 1.5 the authors of the gem provide you with the required configuration instructions here: https://github.com/plataformatec/simple_form/wiki/Twitter-Bootstrap-integration

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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