Main Menu Drop Down Box is not clear

Hey there,

Having a small issue with the drop down menu - when you click it and the drop down does not display and cant see the font.

Does anyone you know how to make this drop down filled so you can see the font?

Many thanks in advance.

Screenshots attached

Your dropdown menu is displaying with a transparent background you can adjust the CSS to make it clear

  1. Go to Online Store > Themes > Actions > Edit Code
  2. Open your theme’s CSS file
  3. Look for the dropdown menu styles and find the property controlling the background color
  4. Set the background color to a solid color instead of transparent
.dropdown-menu {
    background-color: #ffffff; /* Change #ffffff to your desired background color */
}
​

Save the changes and check if the dropdown menu now has a solid background color

Hi Simo

Thanks for the message.

Is this the section I change? it says ’

<ul id="HeaderMenu-MenuList-{{ forloop.index }}" class=" header__submenu list-menu list-menu--disclosure color-{{ section.settings.menu_color_scheme }} gradient caption-large motion-reduce global-settings-popup" role="list" tabindex="-1"

Yes that’s the section you’ll need to adjust
Look for the part in the CSS that controls the background color of the dropdown menu. You can change the background-color property there to make it clear
like this

.header__submenu {
    background-color: #ffffff; 
}

Hi @vibehome

Check 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:

.header__submenu {
    background: red !important;
}

And Save.

Result:

You cant use balck or white color background, cause when you scroll down the text-color change to black. If you like to follow same background color you need a devloper to adjust the javascript.

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

Thanks for the help. I think I will skip the drop down for now. Appreciate your help :blush: