Archived topic
Hiding main menu not working on mobile
3 replies · Started by Klara on March 23, 2023
Hi, I had some issue hiding the logo/menu on the front page but showing the sticky. I got help here but now I'm having trouble getting it to work in the mobile view?
https://generatepress.com/forums/topic/hide-menu-on-front-page-but-not-sticky/#post-2520667
Hi there,
try adding this CSS:
#mobile-header.is_stuck {
opacity: 1 !important;
}
Hi!
It solved the issue of it not being visible but still it's not possible to click on it? I tried adding a z-index like so:
#mobile-header.is_stuck {
opacity: 1 !important;
z-index:200 !important;
}
but it didn't work.
Hi Klara,
Try:
#mobile-header.is_stuck {
opacity: 1 !important;
pointer-events:auto !important;
}