Hi @mattsdll,
You can open the onepress/assets/js/theme.js, find this function and change it as you want :
function smoothScroll( element ) {
if ( element.length <= 0 ) {
return false;
}
jQuery("html, body").animate({
scrollTop: ( jQuery( element ).offset().top - h) + "px"
}, {
duration: 800,
easing: "swing",
complete: function(){
window.current_nav_item = false;
}
});
}
Hope it helps!