• Resolved tobazi

    (@tobazi)


    Hi,

    I would like to keep the Menu in fixed position so when I scroll to the bottom of the page, it would be still visible.
    How could I accomplish this, please?

    Thanx, Kind Regards

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

    (@sacredpath)

    Automattic Happiness Engineer

    Hi there, the menu changes design at 559px and narrower windows/screens, so I’ve limited this change to 560px and wider with a media query.

    @media screen and (min-width: 560px) {
      .menu-toggle {
        position: fixed;
        top: 30px;
      }
      .toggle-on {
        right: 330px;
      }
    }

    Thread Starter tobazi

    (@tobazi)

    thanks! that solved it

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hamburger Menu – Fixed positon’ is closed to new replies.