Hi,
I want the H1-6 to be lower cases
I previously got this code:
.template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 {
text-transform: none;
}
but that is not working on when I add on this site.
http://terranet.se/new/blue-front/
Thanks
Charlotte
Hi Charlotte!
Please add following code as well
.template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 {
text-transform: none;
}
You can also try adding !important rule to your first code :)
Cheers!
Yigit
Hey,,,
but this code is the same as I mention….
Where do add !important ?
Thanks
Hey!
Yes, it is. When i see h1-6 in your post, i assumed it was as following, sorry :)
Please add following code to Quick CSS
h1, h2, h3, h4, h5, h6 {
text-transform: none !important;
}
You can see how you can add !important rule in example code above
Cheers!
Yigit
Sorry…I am getting confused!
Shall add it like this:
.template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 {
text-transform: none !important;
}
nothing happens…
Hey!
Do you mind creating a temporary admin login and posting it here privately? The last code i posted should turn on uppercase for all heading elements.
Cheers!
Yigit
Yes of course.
Hey!
There was a missing closing curly bracket in your custom CSS. I closed it. Please review your website now
Best regards,
Yigit
Aha, thanks :)