Hi, for some reason my contact form dropdown is white. Can anyone help me fix it please?
https://w60880td9oml81vi-56906743879.shopifypreview.com
Topic summary
A user’s contact form dropdown appears white and needs a color fix.
Solutions Provided:
Multiple developers offered CSS-based solutions with slight variations:
- Option 1: Add custom CSS code in
theme.liquidfile, placed above the</body>tag - Option 2: Target the dropdown with CSS selector
#contact_form .select-wrapper#contact-form-anliegand setcolor: black - Option 3: Add styling for
.select-wrapper select optionwith color property - Option 4: Insert CSS directly into
theme.cssfile targetingselect#contact-form-anliegwithbackground-color: black !important
Implementation Steps:
- Navigate to Online Store → Themes → Edit Code
- Locate either
theme.liquidortheme.cssfile - Insert the provided CSS code in the specified location
All solutions focus on changing the dropdown’s color/background-color property to black. The discussion remains open with no confirmed resolution from the original poster.
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
Try adding this CSS it will change the color of the dropdown
#contact_form .select-wrapper #contact-form-anliegen {
color: black;
}
Hello @Daniel19901
You can add code by following these steps
-
Go to Online Store → Theme → Edit code.
-
Open your theme.liquid file
-
Paste the below code before on theme.liquid
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
Hello @Daniel19901
Go to online store ---------> themes --------------> actions ------> edit code------->theme.css
add this code at the very end of the file
select#contact-form-anliegen {
background-color: black !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks



