How to change color of text inside menu drawe

Hey there,

I want to change the color inside the menu drawer to black (instead of gray that it is now). Can anyone help me please? My store url is: “https://0vt8b3l92s7f8bi4-90644578647.shopifypreview.com” Thank you in advance!

Hi @dieuxstudios ,

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.css / based.css file and paste the code in the bottom of the file.
.menu-drawer__menu-item--active, .menu-drawer__menu-item {
    color: white !important;
}
.menu-drawer__inner-container {
  background-color: #000000 !important;
}

.menu-drawer {
        border-color: black !important;
}

Thanks!