Support » Plugin: Constant Contact for WordPress » [Plugin: Constant Contact for WordPress] CSS issues

  • Resolved mephest01

    (@mephest01)


    Can’t seem to remove the bullets from the Constant Contact form designer. Have tried playing around with the style.css file but with no luck. Any ideas?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Have you tried it with other themes? Otherwise, depending on your theme, you could do something like:

    .constant-contact-api-widget ul,
    .constant-contact-api-widget li {
    list-style: none!important;
    display:block!important;
    }
    Plugin Author Zack Katz

    (@katzwebdesign)

    For the form designer, the class of the form is .kws_form – for the list of checkboxes, it’s .cc_newsletter.kws_input_container.input-text-wrap, so for the list of checkboxes, you would want to use:

    <style type="text/css">
    .cc_newsletter ul, .cc_newsletter li {
      list-style:none!important;
    }
    </style>
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Constant Contact for WordPress] CSS issues’ is closed to new replies.