• The Acceptance checkbox does not appear in Chrome but it does appear when using Explorer.
    Any idea what might be causing this issue?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Please include a link to your form in your original question – so others can examine what is happening.

    Thread Starter Bob A

    (@bob-a-1)

    seems to be to do with this in your CSS:

    span.wpcf7-list-item {
    	display: inline-block;
    	margin: 0 0 0 1em;
    }

    if you try this instead:

    span.wpcf7-list-item {
    	float:left;
    	margin: 0 1em 0 0;
    }

    This will show the checkbox but rather than being on the left hand side it’ll be centered 100% width in chrome. So you can then add this below the section that sets the input width in your CSS:

    .wpcf7 input[type=checkbox]{
           width:20px;
    }
    Thread Starter Bob A

    (@bob-a-1)

    Hi Allan1978
    Thanks for your response. Where do I find this code. Is it in the main CSS editor?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Acceptance checkbox does not appear in Chrome’ is closed to new replies.