My Checkboxes Is Covering My Text [RESOLVED]

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?

Apply For SiBAN Membership - SiBAN Check this page, you will see under the check box section the text and title is covered.

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;
}

That made your site look like this when I applied it to your form: firefox JGJvCSYrAZ.png • Droplr

If you need anything else, please let us know.

wow, it worked perfectly. thanks alot Chris.
I really appreciate

1 Like