CMS Development

Jessica123
Member

Change Capitalisation on blog post headings

The headings on our blog posts on both the list pages and blog posts themselves are all capatalised. Is there any way to change this to remove the automatic capitalisation?

3 Replies 3
tjoyce
Recognized Expert | Elite Partner
Recognized Expert | Elite Partner

Change Capitalisation on blog post headings

@Jessica123 - use this CSS: 

<style>
.post-item .post-header h2 {
   text-transform: capitalize;
}
</style>

If this answer helped, please, mark as solved 😄


tim@belch.io | forms.belch.io | Design your own Beautiful HubSpot Forms; No coding necessary.

 

Drop by and say Hi to me on slack.

0 Upvotes
Jessica123
Member

Change Capitalisation on blog post headings

Thanks very much for this. Is there a way to change the heading text within the blog posts in the same way?

tjoyce
Recognized Expert | Elite Partner
Recognized Expert | Elite Partner

Change Capitalisation on blog post headings

@Jessica123 - You're welcome, sure:

.post-header h1 {
    text-transform: capitalize;
}

If this answer helped, please, mark as solved 😄


tim@belch.io | forms.belch.io | Design your own Beautiful HubSpot Forms; No coding necessary.

 

Drop by and say Hi to me on slack.

0 Upvotes