Archived topic
Sticky Header
1 reply · Started by Think & Learn Pvt Ltd on November 3, 2022
Viewing posts 1–2 of 2
I want to make the entire header sticky, How can I do that? https://guide.koskii.com/
Try this CSS:
@media (min-width: 769px) {
nav#site-navigation {
position: sticky;
top: 104px;
}
.top-bar.top-bar-align-left {
position: sticky;
top: 0;
}
header#masthead {
position: sticky;
top: 22.5px;
}
}
This archived topic is closed to new replies.