In my form, the help text is positioned below the input field. However, for InlineRadios, the help text is placed to the right of the field. I can’t figure out how to move the InlineRadio help text below the field. The snips below are taken from the same form. Thanks.
Here’s what I want:
and here’s what I get:
here’s the layout in init (nothing special – and I tried this with and without the css and it doesn’t matter):
self.helper = FormHelper(self)
self.helper.attrs['autocomplete'] = 'off'
self.helper.form_id = 'id-gather-name'
self.helper.form_class = 'form-horizontal'
self.helper.form_method = 'post'
self.helper.label_class = 'col-3'
self.helper.field_class = 'col-8'
self.helper.form_tag = False
self.helper.layout = Layout(
'service_type',
'date_of_birth',
InlineRadios('enrolled_in_public_education', css_class="form-check-input"),