Three-column Menu - Question | JoomShaper
Black Friday sale is live with flat 50% OFF. Sale ends soon! Grab your deal now!

Three-column Menu

cosimo

cosimo

Helix Framework 3 years ago

Hello everyone, I am developing a site with helix ultimate framework and sp page builder, i need to create a three column menu that opens by clicking on the burger icon (full modal header) like that website www.birrasalento.it can you help me on how should i do it? Thanks

0
3 Answers
Pavel
Pavel
Accepted Answer
3 years ago #83655

Hi @cosimo.

Not so dificalt.

In the Helix settings, select Center Modal Header

Create three menu modules and place them in Menu-Modal Position.

Then use the following CSS

#modal-menu ul.sp-megamenu-parent, #modal-menu .modules-wrapper .sp-module:first-child {
    display: none !important;
}
.modules-wrapper.header-modules {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

Result

0
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 3 years ago #83641

Hello cosimo

Sorry, we do not provide customization support. Your work will need a lot of customization I assume. Please consult a developer for this.

Best regards

0
cosimo
cosimo
Accepted Answer
3 years ago #83668

thanks @Pavel, it's works fine

0