Archived topic
Woocommerce cart page prefilled text color
3 replies · Started by Miia on November 25, 2022
Viewing posts 1–4 of 4
Woocommerce prefills email address for logged in users on the cart page. I'd like to change the color of that text. How can I do this? I've found css for all the other text on the cart page but not for this.
Hi there,
try this:
.woocommerce form .form-row input[type="email"] {
color: #f00;
}
And if you want to specifically target its label as well:
.woocommerce form .form-row label[for="billing_email"] {
color: #0f0;
}
Thank you David! This worked.
Glad to hear that!
This archived topic is closed to new replies.