I want all of the heading styles to be upper/lower case, not just upper case. I don’t see how to adjust this in my Headings styling. Can I add custom css to adjust it?
Thanks!
Erin
Yes, you can add some custom CSS.
h1, h2 {
text-transform: none;
}
I think it’s only h1 and h2 headings that normaly get transformed to uppercase.
Also there seems to be extra letter spacing for those headings.
So you could also use the following code instead of the one above to remove this spacing as well:
h1, h2 {
text-transform: none;
letter-spacing: normal;
}
if you have problems with other headings being uppcase, just add h3 – h6 seperated by commas in the first line.
cheers
Hi!
Thank you for using Enfold.
Which heading are you trying to change? Please provide a link to the actual page with the heading element. You can try @Flikk’s suggestion.
Cheers!
Ismael
Hi-
Thanks! I added the custom css that @Flikk suggested but I’m still getting the uppercase setting for H1 and H2. Here’s a link to the homepage. The title “What We Do” is in the H1 style. I’d like it to be proper case. http://countrysidenursinghome.net
Thanks!
Erin
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 { text-transform: none; }
Best regards,
Yigit
Perfect! Thanks so much.
Erin
Hey!
You are welcome, glad we could help :)
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)
Best regards,
Yigit