Hi. I would like to change the Post titles from Upper case to normal upper case/lower case.
Thanks
DC
Hi. I would like to change the Post titles from Upper case to normal upper case/lower case.
Thanks
DC
Hi DC,
Try adding this custom CSS on Theme Options > Global CSS:
.blog h2.entry-title {
text-transform: none;
}
Hope this helps.
Lely, Thanks for this; however, it does not update any of the post titles.
Any other tips?
Thanks
DC
Lely, This worked if I add the CSS to Additional CSS in WordPress.
Many thanks for your help.
DC
Lely, Sorry. Spoke too soon. Its working on the homepage but not on the post pages.
https://www.bestofretro.com/tears-for-fears-tour-tickets-venues/
DC
Lely, Managed to figure it out.
h1.entry-title {
font-size: 24px;
text-transform: none;
}
Thanks
DC
Lely, How do you change it on mobile version of the site?
Thanks
DC
Hello David,
Glad you have figured out adjusting the CSS.
Try to add it back on Theme Options > Global CSS.
h1.entry-title {
font-size: 24px !important;
text-transform: none !important;
}
@media (max-width: 480px){
h1.entry-title {
font-size: 20px !important; /*This is font size on mobile version. Adjust as needed*/
}
}
I ask you to put it back on GLOBAL CSS for ease of maintenance. This means all your custom CSS are there and not scattered everywhere. Hope this helps.
Lely. That’s all good now. Thanks for all your support.
Best
DC
Glad we could help.
Cheers!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.