PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Wednesday, August 3, 2022

[FIXED] How to eliminate the bullets in MailChimp ul

 August 03, 2022     css, visual-composer     No comments   

Issue

I'm using either VC or WPBakery on various sites where I have embedded a MailChimp sign-up form. On all of the sites blue bullets appear underneath the checkboxes. MailChimp support has no idea why. I've tried many variations of CSS to get rid of them to no avail, including:

list-style:none !important;
list-style-type:none !important;

This doesn't work. Here's one site (the simplest VC site with no extraneous coding): http://livingbythestream.com


Solution

It is because of a :before on all of your fields. You can use the solution of Johannes above, or you could hide the :before completely since it is not being used anymore.

I have tested the code below on your website and seems to be working great:

#mc_embed_signup .mc-field-group.input-group ul li:before {
    display: none;
}

If thats not enough, you can use the !important to overwrite other existing css:

#mc_embed_signup .mc-field-group.input-group ul li:before {
    display: none !important;
}


Answered By - Bart Roelofs
Answer Checked By - Dawn Plyler (PHPFixing Volunteer)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing