Do you have an Anchor style that is overriding your List style? Personally I use something like this when I create a List style menu:
ul.Nav
{
list-style: none;
padding: 0;
margin: 0;
}
li.Nav
{
float:left;
margin: 1,1,0,1;
}
a.Nav:link
{
background-color:#ffffff;
height: 2em;
line-height: 2em;
float: left;
width: 9em;
display: block;
border: 0.1em solid #dcdce9;
color: #0d2474;
text-decoration: none;
text-align: center;
}
a.Nav:visited
{
background-color:#ffffff;
height: 2em;
line-height: 2em;
float: left;
width: 9em;
display: block;
border: 0.1em solid #dcdce9;
color: #0d2474;
text-decoration: none;
text-align: center;
}
a.Nav:hover
{
background-color:#ffffff;
height: 2em;
line-height: 2em;
float: left;
width: 9em;
display: block;
border: 0.1em solid #dcdce9;
color: #0d2474;
text-decoration: underline;
text-align: center;
}
so my code might be:
<ul class=nav>
<li class=nav><a href="#" class=nav>foo</a>
<li class=nav><a href="#" class=nav>foo2</a>
</ul>
hth
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
================================================== =========
Technical Editor for:
Professional Search Engine Optimization with ASP.NET
http://www.wiley.com/WileyCDA/WileyT...470131470.html
================================================== =========
Why can't Programmers, program??
http://www.codinghorror.com/blog/archives/000781.html
================================================== =========