I have been playing around a bit with the Twitter Bootstrap CSS toolkit and I wanted to style the forms in a Symfony 2 project accordingly. On its own this is not a difficult task, you can do the following: <form> <div class="clearfix"> {{ form_label(form.email, 'Email Address') }} <div class="input"> {{ form_widget(form.email) }} <span class="help-inline">{{ [...]
↧