Hi, as per matter above how i Change WooCommerce Text Field Background & Text Entry Color?
Currently my theme is Integrity Dark. Would Like to change ALL the field in the checkout field background to white & the text to black
Hi There,
Please add the following CSS under Customizer > Custom > Global CSS:
.woocommerce-account form select, .woocommerce-account form textarea, .woocommerce-account form input[type="tel"], .woocommerce-account form input[type="text"], .woocommerce-account form input[type="email"], .woocommerce-account form input[type="password"], .woocommerce-checkout form select, .woocommerce-checkout form textarea, .woocommerce-checkout form input[type="tel"], .woocommerce-checkout form input[type="text"], .woocommerce-checkout form input[type="email"], .woocommerce-checkout form input[type="password"] {
background-color: #fff;
color: #000;
}