Site logo

Archived topic

How to change font size for the Product price ONLY

1 reply · Started by Avinash on November 2, 2019

Viewing posts 1–2 of 2

Hi,

How should I change the font size of the product price in the product list/grid. The size seems to be altered only if the font size under Customise>Typography>Body>Font Size is changed. However this alters the font size for the entire page. How can I resolve this?

Hi there,

you can use either or both of this CSS:

/* Change price font size for single product and archive */
.woocommerce-Price-amount {
    font-size: 18px;
}
/* Change price font size for archive only */
.product .woocommerce-Price-amount {
    font-size: 18px;
}
This archived topic is closed to new replies.