Viewing 2 replies - 1 through 2 (of 2 total)
  • 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;
    }
    • This reply was modified 6 years, 1 month ago by Jainil Nagar.
    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.