Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1421497

    Hi. How can I put a radio selection on contact form?
    I can’t find this option on enfold contact form

    Thanks

    #1421535

    Hey webba,
    Unfortunately we don’t have a radio option, but you could use the checkbox option and try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    input[type="checkbox"]{
      visibility: hidden;
      position: absolute;
    }
    input[type="checkbox"] + label:before{
      height:12px;
      width:12px;
      margin-right: 2px;
      content: " ";
      display:inline-block;
      vertical-align: baseline;
      border:1px solid #777;
    }
    input[type="checkbox"]:checked + label:before{
      background-color: black;
    }
    input[type="checkbox"] + label:before{
      border-radius:50%;
    }

    to make it look like a radio button. If you are also using checkboxes and this causes a conflict, please link to your form and tell us which ones should be a radio button and we can adjust this css to help.

    Best regards,
    Mike

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.