Override fixed navbar scroll offset

Ah totally missed that he had it set to display on “scroll up” also with the JS - @deezel sorry mate, tried to save ya some JS but missed that - yea the webflow interactions won’t allow you to have it display on scrolling up throughout the site - only on scrolling back up into the home section @Jfly I’d suggest doing something like Deezel did and adding in a JS script - such as this:

$(document).ready(function(){

    $('body').bind('mousewheel', function(e){

        if(e.originalEvent.wheelDelta < 0) {
            userScrollDown()
        } else {
            userScrollUp()
        }

    })

    function userScrollDown() {
        $('.navbar').css('top', '-103px')
    }
    function userScrollUp() {
        $('.navbar').css('top', '0')
    }

})