Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #289743

    I tried to move the mobile menu down so it is visible on iphone 4 (only seems visable in landscape mode)

    #advanced_menu_toggle, #advanced_menu_hide { top: 150%;}
    #advanced_menu_toggle:before { content: ‘Menu’; font-size: 13px; }

    However, when I use the above code the page I get an extra scroll bar and the page can also be moved right causing the design to become unresponsive.

    Am I missing something or did I leave something out?

    #289759

    Hi!

    Try with this code instead:

    @media only screen and (max-width: 768px) {
    #advanced_menu_toggle {
        top: 25px;
    }
    }

    Best regards,
    Josue

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