By default, Divi will add bullet points to each of your widget list items in your footer area,
As you add widgets into your footer section they will consist of the widget title and the widget contents displayed as a bullet point list.
Some Divi footer designs may work with these bullet points, but many people prefer to remove all the bullet points from the footer as they can be quite ugly and unnecessary. They can also create issues with the styling of the monarch social plugins too.
By adding a few lines of custom CSS code to your Theme options or child theme you can remove all list item bullet points from your footer.
Remove bullet points from Divi footer
To remove all list item bullet points from your Divi footer widgets you can add the following CSS code to your website. You can add the CSS code to your Theme options or child theme.
#footer-widgets .footer-widget li:before { display:none; }
The code above will leave a space where the bullet point was so you will most likely also want to use CSS to remove the padding on the list element.
#footer-widgets .footer-widget li { padding-left: 0px; }
By adding a couple of lines of CSS you have removed your bullet points from all list items in the Divi footer.
THANK YOU! This has been ticking me off for a couple hours now, and I could not figure out why I was getting bullets where there shouldn’t be any.
Big thank you! This helped me in one of my projects.
Nice Trick
Thank you very much
Out of curiosity, why the .et_pb_widget:not(.woocommerce) addition?