How do I set color of the default text in the shipping field in my woo commerce store? See image below.
Hello @Nazsect,
Thanks for writing in!
To change the color of the field’s placeholder text color, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)
input::placeholder,
textarea::placeholder {
color: green;
}
And if you want to change the colors of the field text, you may use this code:
.woocommerce-validated input {
color: red;
border-color: black;
background-color: #e5e5e5;
}
Feel free to change the colors since I added in my example a distinct colors so that you can immediately see the changes.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.