[Resolved] Fixed top bar on mobile only

Home Forums Support [Resolved] Fixed top bar on mobile only

Home Forums Support Fixed top bar on mobile only

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1162394
    Joseph

    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%;
      }
    }
    #1162699
    David
    Staff
    Customer Support

    Hi there,

    try this:

    @media (max-width: 768px) {
        .top-bar {
            position: -webkit-sticky;
            position: sticky;
            top: 0;
            z-index: 100;
        }
    }
    #1164617
    Joseph

    That worked like a charm! Hopefully I don’t break it. ๐Ÿ™‚

    #1165009
    David
    Staff
    Customer Support

    Haha ๐Ÿ™‚ You’re welcome

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