New Member
On dropdown lists such as date of birth and timezone on the registration page (or user details page), the dropdown has a white background (when txtCntrlBackground is set to white) and all options are white as well. Upon inspecting them with Chrome Dev Tools, the options should be rgba(0,0,0,0.7) which is 70% alpha of black. I suspected that the select boxes didn't like the alpha, so I added the following to extras.css and it worked:
select option {
color: #4c4c4c;
}
So without that, the options are white on top of a white background. With it, the options show as intended. I would advise the theme be updated to the hex color code rather than an rgba value.
select option {
color: #4c4c4c;
}
So without that, the options are white on top of a white background. With it, the options show as intended. I would advise the theme be updated to the hex color code rather than an rgba value.