Hello @Cherise,
It seems you have js conflict with your navigations.
So here is the Custom js snippets for you to fixed above issue.
document.querySelectorAll('header .menu-item a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
});
}
});
});
and for adding js in your theme you have to install a plugin for that
here is the link https://wordpress.org/plugins/custom-css-js/
Hope it works for you
Sincerely,
Minal