Hi nesiacweb,
I took a look, and I see what you’re describing. There are 2 things happening: 1) Each browser is handling dropdowns differently (this is normal) and 2) The light text style you created for the rest of the form text is applying to these dropdown options (which might not be so much of a problem if it weren’t for that first part).
To fix this, we need additional CSS that will specifically target the dropdown options and make that text dark:
div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select select option {
color: #333;
}
This CSS should change the dropdown options to a very dark grey (will look almost black). And in case it helps, here’s WPBeginner’s tutorial on how to add custom CSS like this to your site.
I hope this helps! 🙂
Thanks so much Jess, it works very well now 🙂 (thumbsup)
Hi nesiacweb,
Excellent! I’m glad that worked well for you, and thanks for taking the time to let me know!
Have a good one 🙂