Simple Push Method for Top Bar
Simple CSS method for using a fixed menu bar and pushing the content down the page.
by Simon Hayter
HTML
<div style="position: fixed; top: 0; left: 0; width: 100%; height: 40px;background: #373737;color: #FFF;line-height: 40px;">
Hello, I am Menu, nice to meet you.
</div>
<div style="height:40px;width:100%;">
I help push the rest of the page down and you can't see me.
</div>
<div>
Existing Content
</div>