Hi there,
I would like to know if this mega menu design is doable in shopify dawn theme?
I tried looking and using Mega Menu Third Party Apps but no luck.
A user asks whether a specific mega menu design (shown in an attached image) can be implemented in Shopify’s Dawn theme.
Proposed Solution:
header.liquid file in the Sections folder to add multiple columns within the mega menu <div>base.css file in the Assets folderdisplay: flex) to create column layoutsCode Structure:
.mega-menu and .column classes for stylingStatus: The original poster acknowledges the guidance and plans to try the suggested approach. The discussion remains open with no confirmed implementation results yet.
Hi there,
I would like to know if this mega menu design is doable in shopify dawn theme?
I tried looking and using Mega Menu Third Party Apps but no luck.
Hello @alicanteallan7 ,
Here’s a general guide for you to follow:
Go to Online Store → Themes → Actions → Edit code
Go to Sections → header.liquid file
Within the mega menu
### Column 1
- Submenu Item 1
- Submenu Item 2
### Column 2
- Submenu Item 3
- Submenu Item 4
Go to Assets folder → base.css file → add this following code to style your menu
.mega-menu {
display: flex;
}
.column {
flex: 1;
}
Save and preview
Hope this can help.
Transcy
I will try this one, thanks for the heads up.