How can I change my drop menu to a list style on Meenooo.com?

https://meenooo.com

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.

  1. From you Admin page, go to Online store > Themes > Click the three dots on the theme you want to edit > Edit code
  2. Go to Asset folder and open the thtme.scss file
  3. 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