Forum Moderators: not2easy
However, I want to use unorded lists in the site. So the question is how do I create multiple list styles. Here is the code I used for the horizontal nav bar.
ul {
margin: 0;
padding: 0;
float: left;
width: 720px;
background: #9C0029 url(images/mainNavBg.gif) repeat-x;
list-style: none;
text-transform: uppercase;
padding-left: 50px;
}
ul li {
float: left;
}
ul a {
padding: 0 2em;
line-height: 2.1em;
background: url(images/mainNavBorder.gif) repeat-y left top;
text-decoration: none;
color: #fff;
float: left;
display: block;
}
ul a:hover {
color: #333;
}
ul .first a {
background: none;
}
Thanks in Advance. You guys have always been great!