Shop Forums WordPress Themes Geek Geek theme Reply To: Geek theme

#8639
Simon
Keymaster

Thanks for contacting us. However, you can fix it by editing main.js. Go to main.js line no 126. You will see a function like this

$('.navbar-nav li a').click(function() {  
    $('html, body').animate({scrollTop: $(this.hash).offset().top -1}, 1000);
    return false;
});

Change the .top position as per your need. like below-

$('.navbar-nav li a').click(function() {  
    $('html, body').animate({scrollTop: $(this.hash).offset().top -80}, 1000);
    return false;
});

Hope it will work.

Thanks