I have tried to get my navbar to be sticky a bunch of times. Worked with editing the component, then the component holder. Set to sticky, 0 pixels on the top and up the Z-index, but the Z index never saves. My hamburger seems to open but behind everything as well. Not sure what to do.
Also potentially related, the opened hamburger menu bar keeps going under the hero section of my page when sized down.
Sticky works insidie of the parent, in your case parent of your sticky element is section “Navbar”.
In your case you want parent of your sticky element to be body. So one solution is applying sticky top 0px to that wrapper “Navbar”, or just removing that div.
From this:
I did this:
And as well I created a class “sticky-navbar” and applied it to all component holders, so you dont need to manually reaply position fixed and other styles on each component.