When I enter lower case text into a Text Block, it shows up as upper case on the live page.
I have tried using the following CSS in my child theme’s style.css, but it does not work:
h1 {
text-transform: none;
}
Please advise. Thanks!
Hi markofwits!
Please try adding following code to Quick CSS in Enfold theme options under Styling tab
.template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 {
text-transform: none; }
Regards,
Yigit
Yes, added that to my child theme’s style.css, and it worked fine.
Thanks!