Archived topic
Fix the Top Bar
3 replies · Started by Parag Agarwal on March 6, 2023
Viewing posts 1–4 of 4
I want to fix the top bar on crickhit.com
Hi Parag,
Try this CSS:
.top-bar.grid-container.top-bar-align-center {
position: sticky;
top: 0;
z-index: 10000;
}
Alternative code:
.top-bar.grid-container.top-bar-align-center {
position: fixed;
top: 0;
width: 100%;
z-index: 10000;
max-width: unset;
}
body{
margin-top: 39.5px;
}
Thanks
You're welcome, Parag!
This archived topic is closed to new replies.