Could anyone please load www.wiistop.com into their browser for me? On Firefox, every once it awhile it will look overlapped with the header. Then after a refresh, it won't. Anyone know?
i haven't look at the source yet but i think the main problem is with top/bottom paddings and margins.
Unfortunately, that will refresh it every 1 second someone visits the site, resulting in a never-ending refreshfest! I think if you put the topbar in a div of it's own (instead of just inside the wrapper), it might help things. Also, stick an empty div between your new topbar div and the content div with a style of 'clear:both;', you should hopefully get the result you're after. <div id="wrapper"> <div id="topbar"> image + google ads go here </div> <div style="clear:both;"></div> <div id="content"> ..... Code (markup): Hope that helps you
Limpit got it right. You should use div ID instead of div CLASS for your page structure though. Classes are re-usable in your design so should be used only on elements that you will re-use throughout your site... Which isn't structure.