• Resolved Jamie_Lee

    (@jamie_lee)


    The checkbox is unfortunately not in the box, but next to it and when you click it appears much higher up. Does anyone know how I can correct this?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Ethan Choi

    (@ethanchoi)

    Hi @jamie_lee,

    It looks like there might be a styling conflict between the site theme and the forms. It seems that you might have fixed the theme’s check mark appearance with custom CSS.

    In case you’d like to have the default check mark in the checkbox field, you can use the following CSS snippet:

    .wpforms-container input[type=checkbox]:checked:before,
    .wpforms-container input[type=checkbox]:before,
    .wpforms-container input[type=checkbox]:checked:after,
    .wpforms-container input[type=checkbox]:after {
    	display: none !important;
    }
    
    .wpforms-container input[type=checkbox] {
        -webkit-appearance: checkbox !important;
    	-moz-appearance: checkbox !important;
    	appearance: checkbox !important;
    }
    

    And in case it helps, here’s a tutorial from WPBeginner on how to add custom CSS like this to your site.

    Hope this helps!

    Thread Starter Jamie_Lee

    (@jamie_lee)

    Thank you, that worked perfectly. =)

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hook is not in Checkbox’ is closed to new replies.