Skip to main content

Get in touch with us

Contact us if you would like more information about the Forum

  • This field is for validation purposes and should be left unchanged.
(function() { document.addEventListener('DOMContentLoaded', function() { var header = document.getElementById('top'); // make sure your header ID is 'top' if (!header) return; var lastScrollTop = 0; window.addEventListener('scroll', function() { var scrollY = window.scrollY || window.pageYOffset; // Toggle classes based on scroll position if (scrollY > 10) { header.classList.add('scrolled'); header.classList.remove('at-top'); } else { header.classList.remove('scrolled'); header.classList.add('at-top'); } // Hide on scroll down, show on scroll up if (scrollY > lastScrollTop && scrollY > 100) { header.style.top = '-100px'; } else { header.style.top = '0'; } lastScrollTop = scrollY <= 0 ? 0 : scrollY; }); }); })();