Mobile menu cannot scroll

The menu containing 10 items, but when viewing the page in horizontal Format (eg Galaxy S7 edge) I cannot scroll down and see therefore only the first 6 items of the menu.

site: www.makeup24.ch
 

Comments

  • Hi,

    we checked your site and everything works fine. The page scroll down and we didn't noticed anything wrong. But if you would like to change existing scroll with the default one, you can do this under Theme options > Addons & Plugins > Addons section.
  • Hi,

    yes - the page scrolls down, but you cannot scroll down within the menu and therefore you see only the first 6 of 10 menu postitions when having the phone in horizontal Format (Galaxy S7 edge).
  • Ok, got it. So the menu items are cut because your header on mobile is sticky. To disable sticky header on mobile, you need to use the following css:
    @media only screen and (max-width: 767px) {
     #Header_creative {
         position: absolute;
     }
    }
Sign In or Register to comment.