Hello,
We Really Apologize about the Delays and Thank You so much for your Patience!
The code you are using is incorrect. Please make sure that the Basic HTML rules are followed. Please find the following code on the Page:
jQuery(document).ready( function(){
setTimeout(function() {
if (location.hash) {
window.scrollTo(0, 0);
}
}, 1);
});
jQuery(window).on('load', function(){
var divScrollToAnchor = window.location.hash;
if( typeof divScrollToAnchor !== 'undefined' ) {
var t = setTimeout( function(){
$('html,body').stop(true).animate({
'scrollTop': $( divScrollToAnchor ).offset().top - 100
}, 700, 'easeOutQuad');
}, 1000);
}
});
and replace it with:
jQuery(document).ready( function(){
setTimeout(function() {
if (location.hash) {
window.scrollTo(0, 0);
}
}, 1);
});
jQuery(window).on('load', function(){
var divScrollToAnchor = window.location.hash;
if( typeof divScrollToAnchor !== 'undefined' ) {
var t = setTimeout( function(){
$('html,body').stop(true).animate({
'scrollTop': $( divScrollToAnchor ).offset().top - 100
}, 700, 'easeOutQuad');
}, 1000);
}
});
This will definitely fix the issue. Additionally, also make sure that the Basic HTML Structure of Canvas is followed according to the Default Templates. Please follow the Documentation > Start > HTML Structure Section.
Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.