Inheritance Problem CSS
-
I’m trying to take away the bullets from a list, and I can’t…and I’m very frustrated.
Here’s the HTML:
<div style="float:right; margin:10px;"> <ul id="boardinglist"> <li class="boardinglist"><a href="http://www.drgoodvet.com/boarding/" title="Boarding">Boarding Overview</a></li> <li class="boardinglist"><a href="http://www.drgoodvet.com/boarding-policies/" title="Boarding Policies">Boarding Policies</a></li> <li class="boardinglist"><a href="http://www.drgoodvet.com/boarding-prices/" title="Boarding Prices">Boarding Pricing</a></li> </ul>(located here: http://www.drgoodvet.com/boarding/)
CSS is here:
li.boardli {list-style::none!important;}
ul#boardul {list-style::none!important;}*I’ve tried this in different combinations…with and without the !important.
However, the bullets come from this entry:
.entry ul li { list-style: disc;}
Shouldn’t the list’s bullets (or lack thereof) results from the li.boardli and ul#boardul entries and not inherited from .entry ul li?
Thanks!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Inheritance Problem CSS’ is closed to new replies.