Quote:
Originally Posted by MMM717
How do I limit the "list-style-none" to the buttons/header only?
|
You need to know about
specificity now.
You just need to be very specific which li does, or doesn't, get a bullet. If
.header ul is not specific enough, giving that ul an id would make it more specific
Like this -
Code:
<div class="header">
<ul id="noBullet">
<li> ...
and in your CSS would be
Code:
.header img {float: left;}
.header ul#noBullet {
margin: 5px 0 0 400px;
text-align: center;
list-style: none;
}