Dropdown Menu Not Working Correctly in IE7

Hey,

My dropdown menu works fine in Firefox and Safari, but collapses in IE7. Here’s the link. http://robertbarnesdesign.com/UPLOAD/index.html

Thanks.
Robert JJ

Hi,

You need to provide co-ordinates most of the time for absolute elements in IE as it gets affected by various things like text-alignment.


ul#main-nav li ul {
    padding:0;
    margin:0;
    display:none;
    position: absolute;
[B]    left:0;
    top:100%;[/B]
    }


Sweet! Worked like a charm. Thanks Paul O’B, you made my day!
Robert JJ