Home Forums WoodMart support forum Color and size of variable product price

Color and size of variable product price

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #46511

    RichPrint
    Participant

    Hello,

    where can I change the color and size of the variable product price?

    #46539

    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

    #46540

    RichPrint
    Participant

    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.

    #46577

    Artem Temos
    Keymaster

    Try to use the following CSS code also

    [name="update_cart"]:not([disabled]) {
    	background: #552c5d!important;
    	color: white!important;
    }
Viewing 4 posts - 1 through 4 (of 4 total)