Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS CSS styles needed to make this list-style none? Reply To: CSS styles needed to make this list-style none?

#210461
jkinney768
Participant

It’s because you’re targeting the wrong CSS property. If you use your inspector, you’ll see the list style is coming from line 38 of your theme’s stylesheet:

ul {
list-style: disc;
}

And since you were doing list-style-type instead of list-style, it wasn’t working. There isn’t anything specific about the CSS selector, so you should just be able to target the class of that list…

.lcp_catlist {
    list-style: none;
}