Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ?

share|improve this question
Can you post your CSS and the html where the anchor is? – Zacho Jun 29 '10 at 18:06
you can only compensate for this if you use javascript scrolling and add/subtract the height of the banner accordingly.. that is the whole point of 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
A working example of the problem would also help immensely. – Jon Cram Jun 29 '10 at 18:11

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.