>> From: "Peter Williams" <[EMAIL PROTECTED]>
>> Have you turned off the default underlining ofr links in the div?
>> #nav a {text-decoration:none;}

Peter, I have now added the "text-decoration:none;" to both relevant sections of the css file but I still do not see a bottom border in IE. Here are the new relevant sections:

div#nav
{
 position: absolute;
 top: 90%;
 left: 3%;
 z-index: 2;
}

div#nav a
{
 color: black;
 background-color: white;
 margin: 2em 0.5em;
 padding: 0.10em 0.30em;
 text-decoration: none;
 font-family: helvetica, sans-serif;
 font-size: 14px;
 z-index: 3;
 filter: alpha(opacity=50);
 -moz-opacity: 0.50;
 opacity: 0.50;
 border-top: 2px solid #000000;
 border-bottom: 2px solid #000000;
 border-left: 2px solid #000000;
 border-right: 2px solid #000000;
}

div#nav a:hover
{
 text-decoration: none;
 border-style: dashed;
 filter: alpha(opacity=100);
 -moz-opacity: 1;
 opacity: 1;
}



Additionally i see that you have the class named "#nav a" rather than "div#nav a", is there a difference? should i be doing things one way or the other?

-jason

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to