In my forms.py I have
forms.py
[...] self.helper.layout = Layout( Field(\'name\'), Field(\'description\'), ) self.helper.form_class = \'form-hori
To you helper layout:
self.helper.layout = Layout( Field('name'), Field('description'),
add css_class:
css_class
Field('field_name', css_class="controls col-md-8 col-xs-7")
Here is the docs link