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 implemented the following code from this page: http://tympanus.net/codrops/2010/06/02/smooth-vertical-or-horizontal-page-scrolling-with-jquery/

 $(document).ready(function() {

            $('ul.navone li a, ul.navtwo li a,a.toplink, a.bodylink').bind('click',function(event){
                var $anchor = $(this);

                $('html, body, header').stop().animate({
                    scrollTop: $($anchor.attr('href')).offset().top
                }, 1500,'easeInOutExpo');

                event.preventDefault();
            });
        });

This all works correctly.

However, in my layout I have a fixed header div (i.e. it stays in place when the user scrolls). Therefore I need to set an offset for the scrolling script of 117 pixels.

How do I do this please?

share|improve this question

1 Answer

up vote 1 down vote accepted

Would be something like that :

$(document).ready(function() {

            $('ul.navone li a, ul.navtwo li a,a.toplink, a.bodylink').bind('click',function(event){
                var $anchor = $(this);

                $('html, body, header').stop().animate({
                    scrollTop: ($($anchor.attr('href')).offset().top + 117)
                }, 1500,'easeInOutExpo');

                event.preventDefault();
            });
        });

just add the +117 to the scrollTop position

share|improve this answer
Excellent, what I actually needed was -117, I altered .offset()top + 117) to - 117 and its worked a treat. Many thanks – Rich - Pixel Vector Nov 16 '11 at 18:49

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.