justinhowe
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.
Dohtheme
Staff member
@justinhowe i tried to reproduce this on :
MacOs : Safari - Chrome - Firefox
Windows: Edge - Chrome - Firefox
Android: Chrome - Firefox
But i didn't find it
Can you tell me which browser version and OS you're using
Regards
MacOs : Safari - Chrome - Firefox
Windows: Edge - Chrome - Firefox
Android: Chrome - Firefox
But i didn't find it
Can you tell me which browser version and OS you're using
Regards
justinhowe
New Member
Windows 10 (Anniversary Update) and Chrome 55.0.2883.87 m.