I have a menu using an unordered list in css (the css and html are below).
I now want one of my menu items to look different than the rest to stand out and I have no idea how to do this. Is it possible to create 2 styles for list items in an unordered list?
any ideas would be great
thanks
I now want one of my menu items to look different than the rest to stand out and I have no idea how to do this. Is it possible to create 2 styles for list items in an unordered list?
any ideas would be great
thanks
Code:
ul.navigation {
list-style:none;
margin:0;
padding:0;
width: 100%;
}
ul.navigation li a {
background-color:#000000;
color:#FFFFFF;
text-transform:uppercase;
text-align: center;
padding:2px;
padding-right: 72px;
border:2px solid white;
margin:0 5px 0px 0;
float: left;
display: block;
z-index: 0;
}
Code:
<ul class="navigation">
<li><a href="index.html">HOME</a></li>
<li><a href="aboutus.html">ABOUT</a></li>
<li><a href="location.html">LOCATION</a></li>
<li><a href="tickets.html">TICKETS</a></li>
<li><a href="speakers.html">SPEAKERS</a></li>
<li><a href="links.html">EXTRA!</a></li>
</ul>
</div>