Archived topic
make a scrollable menu
3 replies · Started by Abdelfttah on August 18, 2019
Hello
I face issue with viewing the long menu on mobile devices. so I wonder How can I make a scrollable menu for mobile. and thanks.
Note:
I tried to enable off-canvas on mobile but sub-sub-items don't appears.
Hi there,
similar topic here, and some CSS to force the normal mobile menu to fill the screen and become scrollable:
https://generatepress.com/forums/topic/sub-menu-scroll-on-mobile/#post-902808
May require some tweaking to work on your site.
Hello
Thank you for your reply. I make some tweaking on css and works fine. thanks.
@media (max-width: 768px) {
.main-nav>ul {
max-height: calc(100vh - 60px);
overflow-y: scroll;
}}
Awesome - glad to be of help.