This topic has 4 replies, 2 voices, and was last updated 3 years, 7 months ago ago by Olga Barlow
How can I change only the font and size to product title on my shopping page?
Thank you
Hello,
You can use CSS selector of products title to add your custom CSS. You can add custom CSS either in child theme’s style.css or Theme Options > Custom CSS.
For example,
.content-product .product-title a {
font-size: 14px;
font-family: "Open Sans";
}
Regards
Hello, what to add in order to change product name font on single product page?
Thank you in advice.
Hello,
Use the below code
.product-content .title, .product-content .product_title, .product-content .product-name {
font-size: 14px;
font-family: Open Sans !important;
font-weight: bold !important;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up