Hi there!
I need to change H1 capital letter to small caps. How can I do that?
Thanks!
Orhan
Hi Orhan,
if you add these line in to tour custom ccs file :
h1{
text-transform: none !important;
font-variant: small-caps !important;;
}
Haydi kolay gelsin
Hey!
If you would like to apply the changes on all h1 tagged elements, please add following code to Quick CSS
h1{ text-transform: lowercase !important; }
@begrafiks Tesekkurler :)
Cheers!
Yigit
Yigit,
I added that shortcode but now, it is all lowercase. I would like it to be appear like how I write it to page. Is it possible?
Hi!
Yes, please change the code to following one
h1{ text-transform: none!important; }
Cheers!
Yigit
Excellent! Thanks :)