In my forms.py I have
[...]
self.helper.layout = Layout(
Field(\'name\'),
Field(\'description\'),
)
self.helper.form_class = \'form-hori
I see two possibilities:
#div_id_name {
font-weight: 0.8em;
}
You can override the field template of your field:
Field('field_name', template='my_field_template.html')
For a reference field template, see site-packages/crispy_forms/templates/bootstrap3/field.html.
There's an open issue on Github for this: https://github.com/maraujop/django-crispy-forms/issues/348