Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1393547

    CrystalTiffanyTan
    Participant

    Hello,

    I’m using Contact Form 7 plugin in my Contact Page.

    1) For some reason, the “Wrap each item with label element” or “use_label_element” is not working when I use X theme. Anyway I can make this work?
    2) Is there any way I can add a right padding to the checkboxes / radio elements? It is currently too close to the text.

    Thank you

    #1393549

    CrystalTiffanyTan
    Participant
    This reply has been marked as private.
    #1394092

    Rue Nel
    Moderator

    Hello There,

    Thanks for writing in! The checkbox and radio button is already wrap in label element. It is just no styling were applied. To resolve this, please add the following css code in the customizer, Appearance > Customize > Custom > Edit Global CSS

    input[type="radio"], 
    input[type="checkbox"] {
        margin-right: 10px;
    }

    Hope this helps. Kindly let us know.

    #1394113

    CrystalTiffanyTan
    Participant

    Thanks! It works great.

    Is there a way to make the checkbox and radio button options come together in one line?
    Kindly view attached screenshot as sample of what I want to achieve.

    Appreciate your help!

    #1394263

    Rue Nel
    Moderator

    Hello There,

    Thanks for updating in! Do you want something like this?

    If that is the case, please add the following css code in the customizer, Appearance > Customize > Custom > Edit Global CSS

    span.wpcf7-list-item {
        display: inline-block;
        margin-right: 10px;
    }

    Hope this helps. Please let us know how it goes.

    #1395028

    CrystalTiffanyTan
    Participant

    Works perfectly. Thank you! 🙂

    #1395084

    Thai
    Moderator

    You’re most welcome 🙂