Gravity Forms Checkbox alignment issues

Hi, The checkboxes on my gravity forms are not aligning properly vertically
Look at the checkboxes on the following form:
https://hansoncatering.co.uk/menus/cold-fork-buffets/
I’d also like to add some padding-right to the checkboxes but can’t seem to work out what the selector is.

THanks
Darren.

Hello Darren,

Thanks for writing to us.

I would suggest you please use this selector to align the checkbox.

.gform_wrapper.gravity-theme .gfield-choice-input+label{}
.gform_wrapper.gravity-theme .gfield-choice-input{}

or

You may use this custom CSS code to align the checkboxes and its label.

.gform_wrapper.gravity-theme .gfield-choice-input+label {
margin-left: 10px !important;
}
.gform_wrapper.gravity-theme .gfield-choice-input {
margin-top: 5px !important;    
} 

Please feel free to change the margin value as your need. The purpose of providing custom CSS is to show you how to add CSS code to your site. Writing custom CSS is outside the scope of our theme support. If you need more customization, you need to learn CSS and learn how to use the browser’s element inspector.In case you have no idea about coding you can subscribe to One where customization questions are answered.

Hope it helps.
Thanks

That was a big help - thank you very much.

You’re welcome, @DesignMunky.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.