Hi, my dropdown options are white on white background, can anyone help ?
Topic summary
A user is experiencing a visibility issue where dropdown menu options appear white on a white background, making them unreadable.
Two solutions were provided:
-
Via theme.liquid file:
- Navigate to Online Store → Edit Code
- Locate the theme.liquid file
- Insert custom CSS code above the closing
</body>tag
-
Via CSS file:
- Go to Online Store → Themes
- Open the Asset folder
- Find main.css (or base.css/style.css/theme.css)
- Add CSS targeting the select options at the bottom of the file
- The suggested code changes the text color to black with
!importantflag
Both responses included code snippets (though partially garbled in the input) and screenshots demonstrating the expected result. The issue appears solvable through basic CSS customization to override the default dropdown option styling.
Hey @Daniel19901
Follow these Steps:
-
Go to Online Store
-
Edit Code
-
Find theme.liquid file
-
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hi @Daniel19901
Check thiso ne.
From you Admin page, go to Online Store > Themes
Select the theme you want to edit
Under the Asset folder, open the main.css(base.css, style.css or theme.css)
Then place the code below at the very bottom of the file.
select#\35 5339-select-1 option {
color: black !important;
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

