Hi, on my site I have two main sections. First left section has a title using H1 and is lower case and capital .
The second section is still in a h1 title as well but stays in all caps.
How can I make it uniform with the first section to be lower case and capital
first section title on hompage :Become a Usa Floors Direct Member & Save On Your Next Project
second section title on hompage :MEMBERSHIP HAS ITS PRIVILEGE WITH USA FLOORS DIRECT
This is a consistent sections on each page that need to be changed.
Hey newvisionnew,
To remove the text-transform for all or your special heading h1 on your whole site, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#top .template-page .entry-content-wrapper .av-special-heading-h1 h1{
text-transform: none;
}
After applying the css, please clear your browser cache and check.
Please note that if you use all caps in the backend when you edit the element then it will still show as all caps in the frontend, so you need to ensure the backend is written as you want to see it.
If you also want this for your special heading h2 try this css:
#top .template-page .entry-content-wrapper .av-special-heading-h2 h2{
text-transform: none;
}
Best regards,
Mike