• Resolved dainchatel

    (@dainchatel)


    I cannot get rid of the list-style-type for a register form generated by shortcode. The bullets just won’t disappear.

    I’ve tried on the UL and LI. Since the UL is generated by the plugin, I can’t give it an ID for higher priority. I’ve even tried !important. I’ve tried on the surrounding element. I’ve tried list-style-type: none and list-style: none and list-style-image: none.

    To view the site you can put in ‘whiskers’ and then click the main “learn more” button and go to “register” tab. You’ll see those darn pesky bullet points!

    Please helppp

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Georgian Cocora

    (@raster02)

    Hello @dainchatel,

    Those bullets aren’t showing because of the list-style-type property, the plugin that you use to create that pop-up creates them using li:before.

    If you add this rule, they should be removed:

    .wph-modal .wph-modal--content .wppb-user-forms li:before {
        position: relative !important;
        display: none !important;
    }

    Let me know if this works.

    Regards.

    Thread Starter dainchatel

    (@dainchatel)

    Hey Georgian,

    Thanks, that worked perfectly! Good catch.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘cannot remove register form UL list-style’ is closed to new replies.