Tagged: custom.css, title
Hi –
I don’t want my titles capitalized. How can I change that? What css code should I enter to custom.css?
I am using Solid Code Theme Editor and entering the below; but have not had any luck. All titles are still capitalized :-(
h1 {text-transform:none}
h2 {text-transform:none}
h3 {text-transform:none}
h4 {text-transform:none}
h5 {text-transform:none}
.site-title {
text-transform: none;
}
Hi huysal11 ;
there was a topic in which this question was treated :
https://kriesi.at/support/topic/i-would-like-to-change-h1-capital-letter-to-small-caps/
Hi!
If you would like to apply the code to all heading elements, please add following code to Quick CSS
h1, h2, h3, h4, h5, h6 { text-transform: none!important; }
Best regards,
Yigit
Great, thanks!