how do i remove this white background on the dropdown menu?
image:
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:
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.
how do i remove this white background on the dropdown menu?
image:
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;
}