-
Notifications
You must be signed in to change notification settings - Fork 129
Open
Description
Is your feature request related to a problem? Please describe.
I have this form with a long list of checkboxes, pretty ugly in the form.
I would like to have them display as a grid
Describe the solution you'd like
Adding the following CSS to styles.min.css does the trick, however it's not perfect, as it's not responsive, and/or maybe the number of columns could be part of the form options.
#plugin_formcreator_form .checkboxes {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 5px;
}
Describe alternatives you've considered
Manually editing the css, but it's not good for the long term, also others could want this feature
with

Metadata
Metadata
Assignees
Labels
No labels