Hamburger Menu (Mobile)

 | SubscribeFavorite

Viewing 0 reply threads
  • Author
    Posts
    • #5847REPLY

      ChrisM

      Participant

      Add this code for right alignment.

      @media only screen and (max-width: 900px) {
        .wpo-mobile-menu-button {
        position: absolute;
        top: 0;
        right: 0;
      }
      }

      Add this code for left alignment.

      @media only screen and (max-width: 900px) {
        .wpo-mobile-menu-button {
        position: absolute;
        top: 0;
        left: 0;
      }
      }

      Please note: Remember to consider the size and placement of your logo when adjusting the hamburger menu, as the hamburger element will sit over your logo as a new layer.