Hello,
I have a problem with the NFT Crypto theme.
When I changed the background to a jpg image I got a problem with the background in the input option in the order form – where you select countries (check photo).
I see that is from conteneir background color (now is transparrent) but when i change to black, its covers and changes the background of the entire page to black.
How to make a drop-down list on a black background without changing the background of the whole page?
I tried the code below to add to custom css but it doesn’t work :-/ the list has a white background all the time
form select {
background-color: black !important;
color: white !important;
border: 1px solid #ccc !important;
padding: 5px !important;
border-radius: 5px !important;
appearance: none !important;
}
form select option {
background-color: black !important;
color: white !important;
}