window.onscroll = function() {myFunction()}; var header = document.getElementById("branding-bar"); var sticky = header.offsetTop; function myFunction() { if (window.pageYOffset > sticky) { header.classList.add("sticky-header"); } else { header.classList.remove("sticky-header"); } } window.FontAwesomeConfig = { searchPseudoElements: true }