The Smooth Scroll Feature Can Be Changed Very Easily, But Tampering With Any Of The Connections With The index.html, and the scroller, can cause a few problems unless you have a better idea of working them.
CODE FOR SCROLL
`/* Smooth scroll to # anchors */
$(document).ready(function(){
$('a[href^="#"]').on('click',function (e) {
e.preventDefault();
var target = this.hash,
$target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top - 63
}, 1000, 'swing', function () {
window.location.hash = target;
});
});
});`
You Can Make Adjustments To The Scroller, Here ^^
The Smooth Scroll Feature Can Be Changed Very Easily, But Tampering With Any Of The Connections With The
index.html, and the scroller, can cause a few problems unless you have a better idea of working them.CODE FOR SCROLL
`/* Smooth scroll to # anchors */
$(document).ready(function(){
$('a[href^="#"]').on('click',function (e) {
e.preventDefault();
});
});`
You Can Make Adjustments To The Scroller, Here ^^