3.How do I contact the creator of a Pen?
Click the link in the verification email from verify@codepen.io be sure to check your spam folder or other email tabs.
4.What version of does CodePen use?
Click the link in the verification email from verify@codepen.io be sure to check your spam folder or other email tabs.

    document.addEventListener("DOMContentLoaded", function() { const killSticky = () => { document.querySelectorAll( '.main-header-box, .header-nav, .sticky-wrapper, .nav-sticky' ).forEach(el => { el.style.position = 'static'; el.style.top = 'auto'; }); }; killSticky(); window.addEventListener('scroll', killSticky); window.addEventListener('resize', killSticky); });