Hi,
I want to disable the uppercase title of blog posts. I looked through the theme settings but did not find anything.
How can I do?
Thanks
Luigina
Hey neonlights79,
Please add the following code
.html_elegant-blog .avia-content-slider .slide-entry-title { text-transform: uppercase !important; }
and let us know if that works out for you.
Best regards,
Basilis
Hi Basilis,
the code does not work, why?
Thanks
Luigina
Hi,
Can you try this css code:
.html_elegant-blog .avia-content-slider .slide-entry-title {
text-transform: none !important;
}
Let us know if thie helps.
Best regards,
Nikko
Hi Nikko,
I tried this code and it’s works fine only in the home page.
Is it possible to disable the uppercase title of single blog posts?
Thanks
Luigina
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
.html_elegant-blog #top.single .post-entry .post-title {
text-transform: none;
}
Best regards,
Yigit
Hi Yigit,
the code that you give me works fine but I have other page where I collect the posts of some categories and the titles of the posts appear in uppercase.
How can I transform all titles in lower case?
Thanks
Luigina
Hi,
Perhaps try just the following:
.post-title {
text-transform: none;
}
If this doesn’t work please link us to the page you mentioned above.
Best regards,
Jordan Shannon
Hi Jordan,
the code does not work.
Take a look to my blog site
Hi,
Try adding this one also:
#top .post-title {
text-transform: none !important;
}
if that doesn’t work on other post or pages, please give us the link so we can check.
Best regards,
Nikko
Hi Nikko,
now work fine.
Thanks so much
Luigina