Hello when i write an article, the titlle (H1 or H2) are in uppercase, is it possible to have in
tiny uppercase please?
We answer me : Hey OSLO2019,
Try the following in quick css:
h1,h2{
text-transform:normal!important;
}
But it does not work when i place : h1,h2{ text-transform:normal!important; } in the CSS style
Hey OSLO2019
There is no such thing like text-transform:normal which is why it does not work.
You can use the following code in order to get it normal case:
h1, h2 {
text-transform: none !important;
}
Cheers
Michael
Thanks Mickael :-)
It’s works
Hi,
I’m glad this was resolved. If you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon