How do I change the colors of the checkout form boxes? My web site background is white, and the form box background color is offwhite. It makes it really hard for customers to checkout. Thank you.
Thanks for contacting us. You can changed the colors of the checkout form fields by CSS code, Please add the below code into Appearance-> customize -> Additional CSS
.woocommerce-checkout .woocommerce form .input-text ,.woocommerce-checkout .woocommerce form .select2-container .select2-selection–single{
background-color: transparent; /* background color of fields */
color: #000; /* text color of input fields */
border: 1px solid #000; /* border color of fields */
}