Hello, please i need help, my checkboxes or radio boxes keep covering my text.
Any help with css code or anything to add space between them or solve the issue?
Hi Meshack. Your theme is adding some content to the beginning of that label, which is why it looks like that. You can add this CSS to your theme (or child theme) stylesheet or via the Appearance Customizer (Appearance > Customize > Additional CSS):
body .gform_wrapper input[type="radio"] + label::before,
body .gform_wrapper input[type="checkbox"] + label::before {
content: none!important;
}