Werd up,
I don't think you need a hack. You may be able to avoid it with one of these two suggestions : Problem Nav Bar In The HTML: http://www.accd.edu/spc/spcmain/applet/120106/default.htm <div id="topnav"> <ul> <li>: Prospective Students & Parents :</li> <li>: Current Students :</li> <li>: Faculty & Staff :</li> <li>: Community and Visitors :</li> </ul> </div> Your CSS File: http://www.accd.edu/spc/spcmain/applet/120106/styles/ff3.css FIRST: Get rid of this 3px padding and see what IE it dose then: #topnav ul li{ font-weight:bold; padding:3px 0 0 0; margin:0 8px; font-size:85%; float:left; display:inline; } IF THATS NOT IT You could try using a position & setting the top with pixels for the container div - like this: #topnav { position:absolute; (try relative too) top:123px; padding:0;margin:0;width:100%; background:#ffcf00 url(../img/navbar_bg.gif) repeat-x; } ALSO Try a combination of them as well before settling for the hack. Don't be afraid to make a copy of the CSS and start seriously messing around with #topnav's attributes UNTIL eventually - You may see where the problem is with, or what is otherwise affecting, #topnav in the CSS. Steve T. http://www.plattdaddy.com/ ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
