Skip to content

Display checkboxes as grid #3615

@tototey

Description

@tototey

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

Additional context
without
Image

with

Image

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions