I would like to get my header drop-down menus to be aligned side by side, for clarification please refer the picture down below
as you can see in the picture above both of the drop-down menus are centre aligned but the menus are placed in a vertical manner, and I would like to place them in a horizontal centre-aligned manner.
Any support or links would be much appreciated.
URL: Abbasi (abbasigems.com)
PASSWORD: testingpage
Thank you.
1 Like
Ujjaval
December 12, 2022, 12:20pm
2
@justauser
put below css code into base.css file(online store->theme->asset->base.css)
ul.mega-menu__list.page-width.mega-menu__list--condensed {
display: flex !important;
}
@justauser
Please add the following CSS code to your assets/component-mega-menu.css bottom of the file.
.mega-menu__list.page-width.mega-menu__list--condensed {
display: flex !important;
}
Thanks!
Hello @justauser ,
I would like to give you a solution to support you:
Go to Online Store-> Theme-> Edit code
Open your theme.liquid theme file
Paste the below code before :
.mega-menu__list.page-width.mega-menu__list--condensed {
display: flex !important;
}
@justauser Got to assets/component-mega-menu.css and paste below css at bottom of file.
.header--top-center .mega-menu__list>li
{
float: left;
}
Hello there,
In your Shopify Admin go to online store > themes > actions > edit code
Find Asset >base.css and paste this at the bottom of the file:
.mega-menu__list {
display: flex!important;
}