• Hello,
    i’m trying to add acceptance checkbox on my site, with a text I have read and agree to the Terms and Condition
    but it gives break after the checkbox.
    I want to make the text appear beside the checkbox.
    anyone have the idea how to adjust this? i’m not really familiar with css ??

    this is the tag i’m using on my contact form 7

    <p>[acceptance accept] I have read and agree to the <a href="/partnership-terms/">Partnership Terms and Condition</a></p>

    thank you in advance

    https://www.ads-software.com/plugins/contact-form-7/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi, I have the same problem. Does anyone have a fix?

    Same issue here

    If you make a change to the CSS class .wpcf7-form-control-wrap that wraps the acceptance checkbox, this changes all of the wrappers of form fields and ultimately screws up layouts.

    If you just put the input code in that also doesn’t work because then the acceptance validation does not work and the user can submit the form without checking the checkbox.

    Another solution would be to put the acceptance boxes inside of a div and give it a class, then you can target them more specifically without it making changes to all .wpcf7-form-control-wrap.

    <div class="acceptance-container">
    [acceptance agreed_1] Agree to this
    </div>

    Then:

    .acceptance-container .wpcf7-form-control-wrap {
        display: inline-block;
    }
    • This reply was modified 7 years, 8 months ago by mikenytola.

    This works for me (for desktops):

    <label style="width: 100%">
    <span style="width: 5%;float: left;">[acceptance acceptance-xxx]</span><span>&nbsp;&nbsp;I have read and agree&nbsp;<a href="https://website.com/privacy-policy/" target="_blank" style="color: blue;">the privacy policy</a></span>
    </label>

    Note: Do not add any space.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Contact form 7 Acceptance checkbox is not inline with the text’ is closed to new replies.