How do I get the headers to not be capitalized?
-
Hi everyone,
I’m trying to get the uppercase letters to be sentence case, for example, “TIM NEVILLE IS A WRITER…”I’ve searched for some code and have tried it, but it didn’t work for me. I’m very new to WordPress, so I might just be doing it wrong.
The blog I need help with is: (visible only to logged in users)
-
Hi,
You can use this:
<h4 style="text-align:center; text-transform: inherit;">Tim Neville is a writer for The New York Times, The Financial Times, Outside, Men’s Journal, Departures and more.</h4>Since you are new I think you can add this to the HTML editor.
There are other ways to do this, like by adding style code that is CSS.
Let me know if you need any help.
Regards
-
Hi paulettejanep – since you have access to custom CSS, there’s no need to use all that code on each h4 heading. :)
Give this a try in your custom CSS editor to override the default uppercase styling on h4 tags:
h4 { text-transform: inherit; }Let me know how it goes.
-
-
Thanks so much everyone.
@kathrynwp can I use this same trick for the title of the page, for example, just the TIM NEVILLE at the top?
-
Hi @paulettejanep, for the site title, we would need a different CSS selector. This would do it.
.site-title { text-transform: inherit; } -
-
- The topic ‘How do I get the headers to not be capitalized?’ is closed to new replies.