Color and size of variable product price
-
Hello,
where can I change the color and size of the variable product price?
Hello,
Please add this code to custom CSS area in the Theme Settings in order to change:
.variations_form .woocommerce-variation-price .price{
font-size: 30px;
}
.variations_form .woocommerce-variation-price .price .amount {
color: #96040f;
}
Please put your values instead of “30” and “#96040f”
Kind Regards
Thank you, it works.
I have another question. On the cart page, there is an “Update cart” button, how to make it change the color of the button to different color and text on the button to white. But only when the changes will be made to the cart.
Try to use the following CSS code also
[name="update_cart"]:not([disabled]) {
background: #552c5d!important;
color: white!important;
}