How can I change my dropdown menu background to solid black?

I would like the background of the drop down menu to be only black rather than the photo. I would appreciate a code to change to solid color black please.

1 Like

Hi @thefeller32 ,

Would you mind to share your URL website? with password if its protected. Thanks!

https://theredroomllc.com/

1 Like

Thank you for the information.

Try this.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.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:
  4. And Save.
ul#HeaderMenu-MenuList-3 {
    background: black !important;
}

Result:

I hope it help.

1 Like

Thank you so much, it looks great!