Hi all
Not sure how to describe this, but I assume the normal web browser top-bottom scroll is adjusted in the Jollyness package? It scrolls faster than normal?
Possible to disable and use "default speed"?
Thanks
Johan
Hello johcar,
In jollyness.js file:
$('#go-to-top').click(function(){
$('html, body').animate({
scrollTop: '0px'
}, 800);
return false;
});
Just increase speed by replacing 800 (ms) to another number
Thank you