Check this:
jQuery(document).ready(function($) {
$(".scroll").click(function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top - 59}, 800);
});
});
1
solved animated autoscroll to div onclick [closed]