Without being 100% sure, I think the errors are occouring by your use of position:relative.
Also, to reset the browser margin/padding, add this to your css:
Code:
* {margin:0px; padding:0px;}
Take care of your use of divs - too many 'unnessecary' divs can cause divits. For example, this div is not needed as you could apply the style to the image by giving it an ID and styling that element:
Quote:
<div class="wrapper">
<img id="logo" src="images/header.png" />
</div>
|
And good job on the
almost valid code
EDIT: Oops, one I'm too slow