From: "Rebecca Richter" <[EMAIL PROTECTED]>

>Still having trouble with the dropdown display in IE 5. IE 6 it looks just 
>fine! My ie.css file has the following rules:

.nav {
    margin-top: -3px;
}
.topnav {
    margin-top: 0px;
}
.nav a {
    height: 1%;
    vertical-align: bottom;
}
.dropdown li {
    margin-left: -16px;
    margin-left: 0;
}

>Any more ideas?  Thanks :)

No more ideas, just the same one. You missed a backslash (escape) character in 
your .dropdown li selector. See below from my previous suggestion - 

.dropdown li {
margin-left: -16px;
ma\rgin-left: 0; /* this line needs the escape character before the letter 'r' 
*/
}

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

Reply via email to