Hi All,
Apologies if this has been asked before, couldn’t find an answer.
Is there a way to display subcategory horizontal instead of vertical? What I mean is instead of the current version that’s on the site this:
I would like the site to display similar to this mockup I made:
Thank you very much for all of the assistance !
hi @Ottodebac
Can you send me your store link to check?
Hi @Ottodebac
Please add this code to your bottom of base.css file in your Online store > Themes > Edit code
.mega-menu__list {
grid-template-columns: 200px 100% !important;
}
.mega-menu__list li:nth-child(2) ul.list-unstyled {
display: grid !important;
grid-template-columns: 200px 200px 200px 200px;
}
1 Like
Thanks so much Dan! Didn’t realize I could target the mega-menu through the base.css, helpful to know!
1 Like