Archived topic
Sticky header only visible on hover
1 reply · Started by Eugen on September 21, 2016
Viewing posts 1–2 of 2
Hi,
I like sticky headers, however, sometimes they're annoying and use content space which makes the content window seem smaller.
Is there a way to show the sticky header only on hover?
Thank you very much
Eugen
You could try something like this:
.main-navigation.is_stuck,
.main-navigation.navigation-clone {
opacity: 0;
}
.main-navigation.is_stuck:hover,
.main-navigation.navigation-clone:hover {
opacity: 1;
}
This archived topic is closed to new replies.