• I’m having issues with checkbox display for my WPform. I’m using ProLingua Theme and it seems that we have 2 checkboxes per inline showing up. I inspected the page and this is where the issue is:

    label-wpform-field-label-inline:before issue

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    I recommend asking at https://www.ads-software.com/support/plugin/wpforms-lite/#new-post so the plugin’s developers and support community can help you with this.

    Hello @uttsihem
    It seems like the issue you’re encountering involves a custom style applied to the checkbox labels, possibly from the ProLingua theme or custom CSS. The label-wpform-field-label-inline:before selector is likely responsible for displaying an additional checkbox or other pseudo-element before the label.

    To resolve the issue, you can override or adjust the CSS. Here’s a solution you can try:
    => Inspect the CSS:-> Open your browser’s developer tools and locate the label-wpform-field-label-inline:before rule.
    => Override the CSS: You can add custom CSS to remove or adjust the pseudo-element.

    label.wpforms-field-label-inline:before {
    content: none !important;
    }

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