Site logo

Archived topic

Making top header bar stay fixed in mobile?

3 replies · Started by Atip on January 29, 2021

Viewing posts 1–4 of 4

Is it possible to make my top header bar stay fixed while scrolling in mobile?

This is my site:

https://bodhigaya.com

Hi there,

without enabling the mobile header you can use some CSS:

@media(max-width: 768px) {
  .site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
}

Thank you. You are the best !!!

Glad to be of help

This archived topic is closed to new replies.