Alter Category Typography on WooCommerce Single Product Pages

This is a Developer Level doc.

If you're unfamiliar with CSS and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our Support Policy, we don't provide support for modifications and customization.

By default, categories on WooCommerce single product pages use the same typography settings and values as set for blog categories.

If you wish to set different typography settings, and change the font, font size or color for example, use the following CSS snippet:

.product_meta .posted_in a {
color: #000;
font-family: "Your Font Name";
font-size: 15px;
font-weight: 600;
}

Adjust values per your need, or exclude the ones you do not wish to change.

All CSS snippets should be added via a child theme's style.css file or using the built-in Custom CSS panel.

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.