Site logo

Archived topic

Hiding main menu not working on mobile

3 replies · Started by Klara on March 23, 2023

Viewing posts 1–4 of 4

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;
}
This archived topic is closed to new replies.