Does it work without the br, but a clear left on the ul itself? e.g
<div id="extra_9">... <ul id="bottom_nav" style="clear:left">... Also, don't use capitals for your tag names and quote your attributes too... Just a conformance thing. Karl
Your CSS looks Ok. What I believe is happening is that since the #bottom_nav container overlaps the #content_wrapper above it and the fact that you specified #bottom_nav as display:inline, IE puts the content to the right of #content_wrapper. By adding a break to your HTML will tell IE to place the next element below instead of next to. Here is the section of HTML with the break added: <DIV id=extra_9><!-- --></DIV><!-- End content_wrapper --></DIV> <BR clear="left" /> <UL id=bottom_nav> I only tested in IE7, don't know if it will behave in IE6. Regards, Kepler Gelotte http://www.neighborwebmaster.com
******************************************************************* List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm Help: [EMAIL PROTECTED] *******************************************************************
