• Resolved jakobguldborg

    (@jakobguldborg)


    Hi, under the Captcha box, there’s a white box.
    I have tried to hide it with following, but without luck:

    #g-recaptcha-response {
    min-height: 0 !important;
    padding: 0 !important;
    border: 0;
    }

    Can you help me?’

    Jakob


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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author IQComputing

    (@iqcomputing)

    Hello,

    It looks like something in your CSS is overriding it with display: block !important it looks like it might be some kind of plugin cf7-styler-inline-css – maybe a Contact Form 7 styling plugin targeting textareas.

    Maybe try this:

    #cf7cstmzr-form #g-recaptcha-response {
        display: none !important;
    }

    The ID specific targeting may be able to override this. You could put this CSS in your customizer. Hopefully that helps, but if not you’ll need to make your CSS more specific.

    Thread Starter jakobguldborg

    (@jakobguldborg)

    It seems to work, thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘White box’ is closed to new replies.