Helix 2.0 Menu Issues - Question | JoomShaper

Helix 2.0 Menu Issues

RG

Randy Garbin

Helix Framework 2 years ago

The latest update made the mobile menu disappear, but somehow I managed to get it back. However, the hamburger icon does not appear at all mobile sizes, and I'm not sure if this is a CSS issue introduced by the update to 2.04 or another bug. I'm hoping I can get some guidance on this problem soon.

0
2 Answers
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 2 years ago #33793

Hi there!

Thanks for contacting us.

I have checked and found out the following custom CSS: https://prnt.sc/1s3lh0r

So, as you can see the minimum device resolution is 768px. If you have lower resolution devices then just chage the minimum value in the following custom code:

@media only screen and (min-width: 768px) and (max-width: 991px){
a#offcanvas-toggler.offcanvas-toggler-secondary.offcanvas-toggler-right.d-flex.align-items-center {
    display: block!important;
}
    }

I mean you can use 300px instead of 768px in the above code.

Best Regards

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 2 years ago #36407

Thanks for accepting my answer!

0