All of a sudden my H1 & H2 styles just changed to all caps. I am not sure what is making this happen. When I use Google inspect tool over a H1 or H2 title it says:
.template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 {
text-transform: uppercase;
letter-spacing: 1px;
}
I do not know what this is or how to fix it. How can I remove this styling that is overriding my predefined styles? Website link is in the private content .
Hey rkumar12,
Add this to quick css:
.template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 {
text-transform: normal!important;
letter-spacing: 1px;
}
Best regards,
Jordan Shannon