Archived topic
Capitalize only the 1st letter of the Month on my Posts
3 replies · Started by Billy on March 14, 2023
Hi guys,
I've been playing with some CSS on my blog but there's one thing I simply can't achieve.
Can you please help me capitalize only the first letter of the mont. ex. "Abril" instead of "abril".
Here's my post URLs: https://micaminoimperfecto.com/el-comienzo/
Thanks a lot!
Hi Billy,
In the Block settings of the Headline Block, you can set the Transform value to Capitalize. Reference: https://docs.generateblocks.com/article/typography-overview/
If you want to use custom CSS, can you try adding this through Appearance > Customize > Additional CSS:
.single-post time.entry-date.published {
text-transform:capitalize;
}
You got it Fernando. Stunning support.
I chose method 1 to avoid loading more CSS, and it worked.
Thanks a lot man!
You're welcome, Billy!