// Adjust the number to be the same as the height of your content above window.onscroll = function() {scrollFunction()}; function scrollFunction() { if (document.body.scrollTop > 150 || document.documentElement.scrollTop > 150) { document.getElementById("header").style.position = "fixed"; } else { document.getElementById("header").style.position = ""; } }