Hello, did you get this working? When viewing your site and scrolling down the navigation menu remains showing at the top of the page.
No, this ist the usual behaviour: when scrolling down it disappears and when reaching the 2nd Panel it shows up again. I want the navigation to be visible all the time.
Hi there,
This code should do it:
.header-top {
position: fixed;
}
.site-header-fixed.header-top {
animation: none;
transition: none;
}
It sets the original header as sticky, and blocks the animation effect.
no, too bad, this one breakes the responsive navigation…
Try this instead:
@media screen and ( min-width: 60em ) {
.header-top {
position: fixed;
}
.site-header-fixed.header-top {
animation: none;
transition: none;
}
}
Hi, thak you, now it works!