XF 1.4 fixed navbar when scrolling down

Brad P

Well-known member
See pictures below. I would like to remove just the "watched threads" "feature threads" "new posts" part out of the navbar. Only on the scroll down when moving down the forums.

Is this possible ?
 

Attachments

  • Screenshot_2015-05-04-10-07-19.webp
    Screenshot_2015-05-04-10-07-19.webp
    38.7 KB · Views: 13
Code:
<script>
    $(window).scroll( function() {
        if ($(window).scrollTop() > $('.fixedNavigationWrapper').offset().top)
            $('#navigation').addClass('fixed');
        else
            $('#navigation').removeClass('fixed');
    } );
    </script>

This is the code but not sure what part to remove
 
Where did you get your theme and Javascript from? If you didn't create it and it was from another source, maybe you should be asking them?
 
Top Bottom