Hi,
I am having trouble to turn my mega menu into a multi-column single menu. Now it is a single column of a long list. Can someone please help?
A user successfully converted their Dawn 11.0 theme’s single-column mega menu into a multi-column layout through custom CSS.
Solution implemented:
component-list-menu.csscalc(100%/3) and inline-blockCurrent status:
The discussion includes a screenshot showing the menu transformation and a Shopify preview link demonstrating the result.
Hi,
I am having trouble to turn my mega menu into a multi-column single menu. Now it is a single column of a long list. Can someone please help?
Sure but please give us the store URL then we will able to help you.
Thank you for your reply. I sort of did it myself by adding this code :
@media only screen and (min-width: 750px){
.mega-menu__list{
width: 80rem !important;
}
.mega-menu__list li {
width: calc(100%/3);
display: inline-block;
}
}
at the bottom of the component-list-menu.css
It worked and I would like your opinion if this is correct code ?