Hello, small bug here, not sure how to solve the issue:
Here is the link: Ochrana osobích údajů na webu | Věra Labajová (divhunt.art)
Once you hit the menu, you should go to the homepage section as an anchor link. But the anchor is not working properly.
1 Like
Pakic
2
You can try to create JS file which is being loaded onPageReady, and use this code below to scroll to anchor.
let anchor = window.location.hash;
if(anchor) {
var targetElement = $(anchor);
if(targetElement.length) {
$('html, body').animate({
scrollTop: targetElement.offset().top
}, 1000);
}
}
1 Like
Just want to thank you! Works like charm. Basically first client site ready to convert 