show/hide this revision's text 2 Corrected after checking in a browser

Use an fixed position element, that has 100% width and a high Z-INDEX.

You'll also want to ensure that that the start of your scrolling content isn't obscured by the fixed , until you start scrolling down, by putting this in another and positioning this appropriately.

<BODY>
    <DIV style="position: fixed; top: 0px; width:100%; height: 100px;">
        HEader content goes here
    </DIV>
    <DIV style="position: asbolute; topstyle="margin-top: 100px;">
        Main content goes here
    </DIV>
</BODY>

Not

Note the the height of the first , and the top margin of the second, will need to be adjusted to suit your needs.

P.S. This doesn't work in IE7, for some reason, but it's a good starting point, and I'm sure that you can work out some variation on this theme, that works in the way that you want it to.

show/hide this revision's text 1

Use an fixed position element, that has 100% width and a high Z-INDEX.

You'll also want to ensure that that the start of your scrolling content isn't obscured by the fixed , until you start scrolling down, by putting this in another and positioning this appropriately.

<BODY>
    <DIV style="position: fixed; top: 0px; width:100%; height: 100px;">
        HEader content goes here
    </DIV>
    <DIV style="position: asbolute; top: 100px;">
        Main content goes here
    </DIV>
</BODY>

Not the the height of the first , and the top of the second, will need to be adjusted to suit your needs.