Hi, how can I make the styling of the country field in the WooCommerce checkout page the same as the other fields – https://screencast.com/t/KSbiX15LH2 – meaning it should have a black background and white text.
Hey DROR,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
.select2-container--default .select2-selection--single {
background-color: #111;
border: 1px solid #444;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
color: #8c8c8c;
}
Best regards,
Yigit
Thanks.