Custom CSS for Sections and Elements
I have a checkbox group with a number of options. I can't get the values to display across the entire form. They break
into two lines. Is there a way to fix that?
First, copy one of the theme folders (e.g. /QMtheme/) and rename the folder to 'MyTheme' or whatever name you want to give it.
Next, take a look at the HTML source code for your form. Every form element is assigned a unique ID selector, which can be used to add custom styling to the form.
For your checkbox group element, locate the unique ID selector, and then define it in your new theme.css file, as follows:
Code:
#ID-OF-DIV {
width:100%
}
This same principle can be applied to sections, too. As long as you identify the unique ID number assigned to the section or element, you can define a style for it.
![]() |
Was this helpful?
Yes
No
Print
Pdf
|

