• Resolved harrisonf

    (@harrisonf)


    I’m having trouble getting my checkboxes to show with the Go theme. When switching to a new theme they do show up.

    Here’s the CSS code I’m using, I can’t get the checkboxes to show up with or without it.

    /* Contact Form 7 Styles */
    input[type=checkbox]
    {
       -webkit-appearance: auto !important;
       appearance: auto !important;
    }
    span.wpcf7-list-item {display:block;}
    .wpcf7 input[type=submit] {
        font-family: "Montserrat", Sans-serif;
        font-size: 1em;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 3px;
        fill: #54595f;
        color: #54595f;
        background-color: #7CCAE7;
        border-style: solid;
        border-width: 2px 2px 2px 2px;
        border-color: #7CCAE7;
        border-radius: 30px 30px 30px 30px; 
    }

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @harrisonf,

    Thank you for reaching out.

    Please add the following CSS code for the input[type=checkbox] property:

    opacity: 1;

    The final code should look like this:

    input[type=checkbox]
    {
       -webkit-appearance: auto !important;
       appearance: auto !important;
       opacity: 1;
    }

    Let me know if this worked for you ??

    Best Regards,
    Pavle

    Thread Starter harrisonf

    (@harrisonf)

    Worked great, thank you for the help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Contact Form 7 Checkboxes not showing’ is closed to new replies.