You can use standard javascript: window.scroll(x, y)
.
This should work pretty well considering that you’ll be doing this at onload
, i.e. the window should begin at (0, 0). Play around with (x, y)
until you get your header to the position that you’re happy with. Naturally you’ll need to change it anytime the header moves.
Example:
<body onLoad="window.scroll(0, 150)">