Bug Mobile Menu After Update Helix3 3.0.2 - Question | JoomShaper
Black Friday sale is live with flat 50% OFF. Sale ends soon! Grab your deal now!

Bug Mobile Menu After Update Helix3 3.0.2

stq74

stq74

Helix Framework 3 years ago

Hello, after updating Helix3 3.0.2, on 2 of my sites, the mobile menu is no longer aligned with the logo, and the breaking point has to be changed.

Thanks for your help.

https://geisen-denise-sculpture-verre.com/ :

https://prnt.sc/FGxf2Wjzo6bb

https://prnt.sc/Pv1F2HD-AQnZ

https://couranthys.fr/ :

https://prnt.sc/O6pwJ_4GC9i7

https://prnt.sc/-B2TeUfdnF7g

0
3 Answers
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #61762

Hi there!

Sorry for your issue.

For your offcanvas issue, you can use the following code in your custom CSS:

#sp-header .row {
        display: flex !important;
}
#sp-menu {
       flex: auto !important;
}

You can use media query to adjust your breakpoint to appear the offcanvas logo in that specific resolution. Here is sample code for you:

@media (max-width: 1024px){
#offcanvas-toggler {
        display: block !important;
}
.sp-megamenu-parent{
        display: none !important;
}
}

Hope this helps!

Note: Path towards custom CSS(Joomla 3): Extensions>Templates>Styles> Click on your current default template name then choose Template Options. Then find custom CSS within the custom code.

Best Regards

0
stq74
stq74
Accepted Answer
3 years ago #61804

Hi Rashida, it's ok.

Thank you very much

Best Regards

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #62162

Glad to know that and you are always welcome:)

0