how can i do this? in custom CSS?
Hey charger70!
Thank you for visiting the support forum!
What are the element with h1 and h2 tags that you’re trying to change? You can add something like this on Quick CSS or custom.css:
h1, h2 {
text-transform: none;
}
I’m not sure if this is going to work but if you can give us a link to a page with the h1 and h2 tags, we’ll be able to provide you with a better solution.
Best regards,
Ismael
thanks, ismael – tried that, no change – see here: http://www.lobsterme.com – front page, scroll down – the layout builder third-positions are all “all caps”
…or here: http://www.lobsterme.com/lobster-me-menu/ – the page header is still all caps.
any thoughts? thanks!
h1, h2, h3 {
text-transform: none !important;
}
edit: also edit h3 in case you want to get rid of all the text transform. standard is h1, h2, h3 to be uppercase in enfold.
hey flikk – thanks for that, it worked on the layout builder home page elements great!
but here: http://www.lobsterme.com/lobster-me-menu/
still all caps…any idea? it’s an <h1> but so far…not taking the change.
There are 2 ways:
1. Dont write it in uppercase
2. Use text-transform: lowercase and text-transform: capitalize
But since it is not inside an element with a unique ID the second solution would transform other H1 elements as well. (Lowercase+Capitalize Would Capitalize All Words In H1 Tags Like This)
So just go with the first solution :)
(it does not get transformed in the first place, it got entered in all uppercase)
thanks, Flikk! you’re right – those were all caps, DUH! sorry for taking your time on that.
appreciate your help!