Make Multichoice Checkbox bigger

Hi Plumsail,

How do I increase the size of the multi choice checkbox common field?

Thank you!

Hello @DryChips,

You can change the checkbox input size using the CSS:

.fd-form .form-check-input {
    width: 50px;
    height: 50px;
}

If you only want to change the input size of a specific field, add a CSS class to it:

.my-field .form-check-input {
    width: 50px;
    height: 50px;
}

image

1 Like