/** * Custom JS for theme elements */ /** * Scroll to JS for scroll button on header */ document.querySelector('.wp-block-scroll-down').addEventListener('click', function(e){ e.preventDefault(); var nextElementSiblingOffsetTop = this.closest('.wp-block-section').nextElementSibling.offsetTop; ; window.scrollTo({ top: nextElementSiblingOffsetTop, behavior: 'smooth' }); });