[Resolved] Making top header bar stay fixed in mobile?

Home Forums Support [Resolved] Making top header bar stay fixed in mobile?

Home Forums Support Making top header bar stay fixed in mobile?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1639038
    Atip

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

    This is my site:

    https://bodhigaya.com

    #1639297
    David
    Staff
    Customer Support

    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;
      }
    }
    #1639586
    Atip

    Thank you. You are the best !!!

    #1639595
    David
    Staff
    Customer Support

    Glad to be of help

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.