CMS Development

Jessica123
メンバー

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件の返信
tjoyce
名誉エキスパート | Elite Partner
名誉エキスパート | 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 いいね!
Jessica123
メンバー

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
名誉エキスパート | Elite Partner
名誉エキスパート | 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 いいね!