Woocommerce product title text size

You I’m trying to change the text size for the product title for my products. Some of it is missing and I want to make it smaller (see image attached) how can I do this?

Thanks in advance.

Rob

Hello @Rob_G33,

Thanks for asking. :slight_smile:

You can add following CSS under X > Theme Options > CSS to change font size:

.woocommerce li.product .entry-header h3 {
    font-size: 1.2rem;
}

If you would like to learn CSS, please take a look at following resource:

https://www.w3schools.com/css/

Thanks.

Thank you, presumably you can change the 1.2 to another number to suit?

Thank you for the css learning lesson link as well.

Rob

Correct.

Something likes this:

.woocommerce li.product .entry-header h3 {
    font-size: 1.4rem;
}

Regards!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.