Viewing 2 replies - 1 through 2 (of 2 total)
  • Brian

    (@brianmiyaji)

    @danchan22 This would require some custom CSS/Javascript. A quick solution is to add something like this to Custom CSS:

    .main-navigation {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 999;
    }
    .admin-bar .main-navigation {
      top: 32px;
    }

    This will push the menu to the very top of the page and will stay there as you scroll. More advanced solutions (like having the menu “stick” after scrolling down past a certain point) may require additional JS code.

    Thread Starter danchan22

    (@danchan22)

    Cool, thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Make Header Menu Sticky’ is closed to new replies.