I want the CSS script for changing the related products title to not all uppercase letters.
A
Anastasia
Original poster
Member
I want the CSS script for changing the related products title to not all uppercase letters.
Hi Anastasia,
Try this CSS
section.related.products h2 {
text-transform: none;
}
Copy and paste this in Appearance -> Customize -> Additional CSS
Let us know if this works or not.
Best Regards
Yes that worked, thank you! But now I need Cart totals, Billing Details, and Additional information, and Your order. If you could please provide the CSS for this it would be appreciated. Thank you.
Hi Anastasia,
Here is the CSS for these
.woocommerce .cart_totals h2 {
text-transform: none;
}
.woocommerce-checkout .entry-content .woocommerce h3 {
text-transform: none;
}
Best Regards