Woocommerce text size adjust

Hi

Can you please tell me how I can reduce the size of the text in the woocommerce product category.

Is there a place I can change the font size only for woocommerce without affecting the rest of the site?

Hello @dylandesilva,

Thanks for writing in!

There is no option in the theme that allows you to change the font size of the product item titles in your shop and product category archives. It is using the default global font styling in X > Theme Options > Typography. You need to add CSS code into X > Theme Options > CSS to be able to adjust the font size.

You need to use the Google Chrome Developer Toolbar to check the live HTML code and find which CSS selector you need to use.

By default, the product item titles are using this built-in CSS code:

.woocommerce li.product .entry-header h3 {
    font-size: 148%;
    line-height: 1.05;
}

Feel free to adjust the font size and the line-height. You may your custom CSS code in the designated custom CSS section in the Theme Options. To learn more about the font-size and line-height CSS property, please check this out:

Feel free to make adjustment as you need. Here are some related links for further reading, this could help you in finding and implementing some CSS fixes:

Best Regards.

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