• Hi, love the plugin, but when styling I found that it’s not possible to apply the custom styling to radio/checkboxes because the elements are wrapped in the following structure:

    <div class="radio">
    <label>
    <input name="" type="radio" value="Yes" checked="">
    Yes
    </label>
    </div>

    so if we wrap the actual label in this case Yes in a span it will be possible to add some custom styling to the radio/checkbox buttons

    <div class="radio">
    <label>
    <input name="" type="radio" value="Yes" checked="">
    <span>Yes</span>
    </label>
    </div>
  • The topic ‘Feature request: Add span for radio/checkbox output’ is closed to new replies.