in this site i want drop menu to be a list not a very wide column
Hi @abdo10
You can follow the instructions to achieve the result below.
- From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
- Go to Asset folder and open the thtme.scss file
- At very end of the code, add the code below
.site-nav__dropdown.megamenu.text-left {
min-width: max-content;
}
li.site-nav__item.site-nav__expanded-item.site-nav--has-dropdown.site-nav--is-megamenu {
position: relative;
}
.grid.grid--center {
display: flex;
}
.grid.grid--center > * {
width: max-content;
}
Result:
thanks a lot
it works
