Hi,
I'm trying to keep my header fixed with the below code. My header is fixed however when I scroll the page the contents are overrolling on the header and it looks odd since my entire page is of white background, I can't change the background color, any help.
<style type="text/css">
body { margin:100px 0px 0px 0px;}
div#topdiv {
position:fixed;
top:0px;
left:0px;
width:100%
}
</style>
<div id="topdiv">Heading</div>
<p>
content<br>
content<br>
content<br>
.....
</p>