Helix Ultimate Hamburger Menu Displayed At Width - Question | JoomShaper
Black Friday sale is live with flat 50% OFF. Sale ends soon! Grab your deal now!

Helix Ultimate Hamburger Menu Displayed At Width

JD

Joel DeVenney

Helix Framework 3 years ago

How do I tell the template at which width I want the hamburger menu shown and the regular menu removed? I'm about 30 pixels off because of our menu items. Thanks!

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

Hi there!

Thanks for your query.

You can use media query for that.

Here is sample custom CSS for you:

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

Please put the max-width value as per your need.

Note: Path towards custom CSS: 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