Could somebody help me and tell me what is creating bullets throughout my site?
bit.ly/12QJQ0F
(look at the form) and on the Social Media page its there too. Id just like to disable all of them altogether - I have list-style-type none in dozens of places in my css and theyre still popping up
Thanks!
The CSS fix should be:
If everything else fails try adding this just at the start of each line where you want to have a bullet:
This is a workaround through an HTML entity, not CSS. However, using it has been a workaround for me in the past.
Here is your problem:
At line
11030
of yourtheme.css
file, you have the following:That whole code block is your culprit.
An easy way to find things like this in Chrome is by right-clicking any item on the page and choosing "Inspect Element"... You can then view all styles being applied to the element, and from where.
It's coming from this line:
:) Just edit that will fix it