I have a layout something along the lines of :
<div class="banner"></div>
<div class="content"></div>
My banner has position:fixed; and is roughly 200px high.
The problem is that when I click a link with a fragment identifier, the page scrolls and the anchor (with the identifier) sits at the top of the page, behind the banner instead of under the banner where it can be seen.
Is there something (CSS or jQuery) that I am missing ?
position:fixed.. to get it out of the normal document flow.. Alternatively, you could wrap the rest of your site with a div, and style it so you only scroll inside that.. – Gaby aka G. Petrioli Jun 29 '10 at 18:11