• Resolved hanneswizany

    (@hanneswizany)


    Hi,

    i have a problem with the acceptance checkbox, the text appears but the the checkbox looks like a text form and is not clickable, under this link you can see how it looks:
    https://cloud.jungbrunnen.me/index.php/s/t6DjLXmj6GijSeB

    Here is my code:
    [acceptance acceptance] Mit dem Absenden des Formulars stimme ich der Verwendung, Speicherung und Auswertung meiner personenbezogenen Daten zu.< [/acceptance]

    Thanks for your help!
    Hannes

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Jainil Nagar

    (@jainilnagar)

    Hello @hanneswizany ,

    It is the CSS issue. You have used -webkit-appearance: none; for all the input which doesn’t allow the default checkbox CSS.

    You should add the following CSS for the checkbox:

    .wpcf7-form input[type="checkbox"] {
        width: 18px;
        height: 18px;
        vertical-align: middle;
        -webkit-appearance: checkbox;
        -moz-appearance: checkbox;
    }
    Thread Starter hanneswizany

    (@hanneswizany)

    Hi Jainil,

    thank you very much, my problem is solved.
    I wish you a wonderfull weekend!

    Best regards, Hannes

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