Archived topic
Fixed top bar on mobile only
3 replies · Started by Joseph on February 11, 2020
Viewing posts 1–4 of 4
Trying to get the top bar to be fixed, but on mobile only. Tried this code, but then the topbar crashes over/under the header/nav somehow.
@media (max-width: 768px) {
.top-bar {
position: fixed;
top: 0;
width: 100%;
}
}
Hi there,
try this:
@media (max-width: 768px) {
.top-bar {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 100;
}
}
That worked like a charm! Hopefully I don't break it. :)
Haha :) You're welcome
This archived topic is closed to new replies.