Hello everyone. I have a problem that I can’t solve. I have buttons on my nav bar that point to my sections on the same page.
However, when I click on them, they go straight to the section. There is no smooth scrolling. My account is free, and I can’t configure smoother scrolling. I used the Business Starter Free template. Can you help me understand how to configure it to have smooth scrolling?
I thinkn you’ll need to use javascript to target jump link while smooth scrolling. I’ve experienced a similar issue before and was able to resolve it like that. If you are using locomotive scroll this is how I solved it at the time:
const form= document.querySelector('#email-form');
$('.button-small-nav').on('click', function() {
locoScroll.scrollTo(form)
});