Home Forums WoodMart support forum Change the color of product price Reply To: Change the color of product price

#132674

Hello,

Please modify the above code as per your needs and add it to the Theme settings > Custom CSS:

/* STYLE OF FIRST PRICE */
.product-grid-item .price del {
    color: red; /* COLOR */
    font-size: 16px; /* SIZE */
}
.product-grid-item .price del .amount {
    color: red; /* COLOR */
    font-weight: 600; /* FONT WEIGT */
}
/* STYLE OF SECOND PRICE */
.product-grid-item .price ins .amount {
    color: blue; /* COLOR */
    font-size: 16px; /* SIZE */
    font-weight: 600; /* FONT WEIGT */
}

Best Regards