So the animation (of fading in and out) would be nice, but just having something was better than nothing. I found if I added a top bar, and set the nav/header to sticky, at least it would move a little and then stick. This works out well. The code I used:
site-header, .main-navigation {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index:100000 !important;
}
.main-navigation {
top: 65px;
}
#mobile-header {
position: sticky;
top: 0;
}
But I’ll change the z-index to 99 and see if that works.
Not sure if this requires a different topic to start, but is there a way to set the background transparency really low, and relative positioning, but then 0% transparency and fixed when it is in stuck position? Sort of a backdoor overlay if you know what I mean 😀