How can I alter the color of my drop down menu?

I’d like to know how to change the color of my drop down menu.

1 Like

1- Go to online store

2- Go to edit code

3- Open base.css file

4- Add the following code at the bottom

.header__inline-menu details[open] > .header__submenu {background-color: #dbc7fc !important;}

Save and that’s it.

You can change the color code to the one you want.

1 Like

Hi @StellarFae

Try this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
#HeaderMenu-MenuList-6, #HeaderMenu-MenuList-3, #HeaderMenu-MenuList-2 {
    background: aqua !important;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

Thank you! I truly appreciate you taking the time to help me! Have a wonderful day!