Up until 2 days ago, my fixed navbar was working. Scrolled down the page now and it’s responding as it’s in absolute positioning. It appears to work in the designer, but not on the published site.
Any ideas on what is hindering it? It’s the Main Navigation symbol that’s acting up.
Things working as expected in the designer but not on the published site can often point to custom code that having unexpected results.
Try removing the smoothscroll script in the Home page custom code section in the settings. I imagine this is taking over and is ignoring the fixed position of your nav.
// remove this
<script src="https://cjh.sfo2.cdn.digitaloceanspaces.com/Smooth-Scroll/luxy.js"></script>
If you put that script back on the page and move the Navigation symbol to the top of the page (so it’s outside of the smooth scroll element) and publish. That might work. In fact I’m 99% it will work, as the script is targeting everything inside of the Smooth Scroll wrapper
And we’re back! I must have moved the nav inside the wrapper when creating other pages to lessen how many times I copy/pasted. Makes total sense as to why it stopped working all of a sudden. THANKS IMMENSELY!!!