Hello! I would like to change the block titles, “RELATED ARTICLES” and “MORE FROM AUTHOR”, from all caps to normal text. I notice that when I go under Theme Fonts > Modules and Blocks General > Blocks/Widgets Title, that I can change the Transform to None(normal text), these titles (RELATED ARTICLES and MORE FROM AUTHOR) are still in all caps. Help? Is there a custom code that I can use? Thanks!
Catalin, it’s not a problem with the caches. Here is the link: http://e50.4da.myftpupload.com/this-weeks-featured-artist-tim-carr-talks-photography-and-24-hours-in-havana/. You will see at the bottom of the post that “RELATED ARTICLES” and “MORE FROM AUTHOR” are both in all caps, even though the Theme Fonts > Modules and Blocks General > Blocks/Widgets Title > Transform is currently set to None(normal text). I just double-checked. You can also see in the right sidebar of the link above, that the title of the “Latest Posts” widget is responding properly, showing “Latest Posts” and not “LATEST POSTS”. As a trouble-shoot, when I change the Transform setting to Uppercase, the Latest Posts title becomes LATEST POSTS. And when I change the Transform to Lowercase, both titles become all lowercase, showing “related articles” and “more from author” and “latest posts.” So it seems that the RELATED ARTICLES and MORE FROM AUTHOR titles aren’t responding when set to None(normal text). Can you please help fix this?
Hello awoodhams,
Try using the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-related-left, .td-related-right{
text-transform:lowercase!important;
}
The result is here -> https://www.screencast.com/t/2jEcOHFl
Thanks for your understanding!
Catalin, thanks for the code, but this code makes it all lowercase. I don’t want it to be all lowercase, I want it to be normal…with the first letter capitalized and the rest of the letters lowercase, as in normal writing…like this: Related Articles and More From Author. Can you provide this code?
Hello awoodhams,
You should check the Translations section and add there your desired name for this section, like this -> https://www.screencast.com/t/Q5yXpwocHx1s and the result is here -> https://www.screencast.com/t/pYpNp3RlKCm or if you want to use a bit of CSS code, you can try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-related-left, .td-related-right {
text-transform: lowercase !important;
}
.td-related-left:first-letter, .td-related-right:first-letter {
text-transform: uppercase;
}
Thanks for your understanding!