• Resolved royercas

    (@royercas)


    Hello,
    There’s kind of a ghost or duplicated radio button coming from nowhere right in the middle of the form. Even seems to be interacting with both sets of multiple Choice items in the form. I thought I could messed up something so, started from a template and same.

    Please see Attached and framed in RED.
    https://snag.gy/ICkJLc.jpg

    Found this in this support pool, but nothing helps

    .wpforms-container input[type=”radio”],
    .wpforms-container input[type=”checkbox”] {
    display: inline !important;
    width: auto !important;
    }
    div.wpforms-container-full .wpforms-form .wpforms-field-radio input {
    -webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio;
    }

    Please help

Viewing 1 replies (of 1 total)
  • Plugin Support Ethan Choi

    (@ethanchoi)

    Hi royercas,

    It looks like there might be a conflict between the site theme and the form styles that is affecting the Multiple Choice field. To address this, please try the following CSS tweaks:

    .wpforms-container input[type=radio] {
    	-webkit-appearance: radio !important;
    	-moz-appearance: radio !important;
    	appearance: radio !important;
    }
    

    And in case it helps, here’s a tutorial from WPBeginner on how to add custom CSS like this to your site.

    If that does not resolve the issue, could you please share a link to the form on your site?

    Thanks 🙂

Viewing 1 replies (of 1 total)

The topic ‘Multiple Choice ERROR | Duplicated item from nowhere’ is closed to new replies.