how do i remove this white background on the dropdown menu?

Topic summary

A user is experiencing an unwanted white background appearing on their dropdown menu, as shown in an attached screenshot from their website (stubbornstudios.com).

Proposed Solution:

  • Navigate to: Online Store → Theme → Edit Code
  • Locate one of these CSS files: base.css, theme.css, style.css, main.css, or custom.css
  • Add the following CSS code at the end of the file:
ul#HeaderMenu-MenuList-3 {
    background: transparent !important;
}

This CSS targets the specific dropdown menu element and sets its background to transparent, which should remove the white background. The discussion appears to be awaiting confirmation from the original poster on whether this solution resolves the issue.

Summarized with AI on November 1. AI used: claude-sonnet-4-5-20250929.

how do i remove this white background on the dropdown menu?

image:

WEBSITE:https://stubbornstudios.com/pages/staf

Hi @Amin_5 ,

Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

ul#HeaderMenu-MenuList-3 {
    background: transparent !important;
}
1 Like