Change heading font size of product short description on single product
-
Hi, I would like to change the heading font size of product short description on single product, like etc h2 h3 h4.
Please let me know how to change it , thanks
Attachments:
You must be
logged in to view attached files.
Hello,
You can change the heading font size of the product short description on the single product page using custom CSS.
Add the following Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS. Modify the font size values as per your preference.
.woocommerce-product-details__short-description h2 {
font-size: 28px;
}
.woocommerce-product-details__short-description h3 {
font-size: 24px;
}
.woocommerce-product-details__short-description h4 {
font-size: 20px;
}
Best Regards,