Ok.. looking good in FF now
Nice site by the way, I like it
You still have the footer set to position absolute. That is causing your problem. I removed that, put in the clearing element, and the footer stays where it belongs - at the bottom of the page.
Quote:
.brclear { /* Use a break with this class to clear float containers on both sides */
clear:both;
height:0;
margin:0;
font-size: 1px;
line-height: 0;
}
|
Quote:
<br class="brclear" />
<div id="footer">
<p> © MSTD.eu </p>
</div>
|
Also add this to the body element:
margin: 0;
padding: 0;
As for your header and the menu, there is an easier way to do that.
Create an actual header div, put your image in it or as a background in the CSS. Create your menu as a UL, and then you can absolutely position the UL over the header where you want it. Make sure you add position:relative to your CONTENT div.
__________________
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
|