Checkbox "options per row" not working when set to '1'

cmendla

Member
Hi -

I have a page at http://www.bcsbc.edu/student-services/ferpa-authorization-form.html

Under "Grants" I wanted each option to be on one line.

I set "Options per Row" to '1' and it shows all three options on the same line.

However, if I set "Options per Row" to '2' then it shows 2 options on one line and the third on the next line.

To be honest I haven't done a github on this site for about 2 weeks or so. I'm not sure if this is an issue unique to this site or if it is a known issue.

thanks

chris
 
The "culprit" is your Joomla template which is setting
fieldset label {
display: inline-block;
You must reset it to display:block in your form's custom_css.php
 
Troester - Thanks I was able to add the fieldset label {display: block} to the custom css area in my template maker.

It is working as designed now.
 
Back
Top