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?
Hi!
Try with this code instead:
@media only screen and (max-width: 768px) {
#advanced_menu_toggle {
top: 25px;
}
}
Best regards,
Josue