Archived topic
Title is all capitalized, how to fix this?
7 replies · Started by aaron on July 16, 2021
In the wordpress post list page and google's SERP, it shows correctly.
But when going in to the article, the title is all capitalized. How do we fix this (on all posts, not single page)
What I don't want = HOW TO BUY BOOK
What I want = How to Buy Book
Hi there,
Is this just the H1 on the Single Post ?
If so you can add some CSS eg.
.single-post h1 {
text-transform: initial;
}
I should of disclosed, this is not single post. H1 Title is capitalized entire site
Can you share a link to a post / page where i can see the issue?
In the post = all capitalized
Int the Wordpress = only first letters are capitalized
You can change the text transform in Customizer > Typography > Headings.
There are two of them:
Heading 1 (H1) - for the entire site.
Single Content Title (H1) - for the single posts.
Worked, thank you!
You're welcome