Quote:
|
inherit and auto don't seem to work in Firefox, Opera.
|
Sure they do, it's something else in your code that is the culprit. The reason it's not expanding is because you need to clear the float after the nav, like this:
Quote:
<div id="ct_ctr">
<div id="nav">
<ul>
<li><a href="http://www.riptidepcs.com/final/products.htm">Products</a></li>
<li><a href="http://www.riptidepcs.com/final/support.htm">Support</a></li>
<li><a href="http://www.riptidepcs.com/final/faq.htm">Faq</a></li>
<li><a href="http://www.riptidepcs.com/final/contact.htm">Contact</a></li>
</ul>
</div>
<br class="brclear" />
</div> <!-- ct_ctr -->
|
Once you clear the float there, the center section will encompass the nav within.
I removed the clear:left you had in there, it's not effective. The code for the clearing <br> I use is this:
.brclear{
clear:both;
height:0;
margin:0;
font-size: 1px;
line-height: 0;
}
Works like a charm 
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
Last edited by LadynRed; 12-03-2007 at 06:59 PM..
|