Hi there,
Welcome to SeaTheme forum.
(Maybe you could ignore step1-2.)
1. You can a name for a section via ID name of a module like “works”
2. Add #works for a text link.
3. Please add the custom JavaScript codes by child theme or the Simple Custom CSS and JS plugin (click how):
jQuery(document).ready(function(){
const links = document.querySelectorAll('.text_block a');
links.forEach(link => {
link.addEventListener('click', event => {
event.preventDefault();
const href = link.getAttribute('href');
if (href.startsWith('#')) {
const targetId = href.slice(1);
const targetElement = document.getElementById(targetId);
if (targetElement) {
targetElement.scrollIntoView({ behavior: 'smooth' });
}
}
});
});
});
—————
If it doesn’t work, could you please leave your wp-admin access (URL / username/password) by picking up “Set as private reply”?
Regards!
SeaTheme – FAQs – WordPress Customization – Facebook