On my homepage, I have a section labelled FROM THE BLOG which pulls in the latest blog entry. How do I change the font size to be a little bigger for the title (Giving Voices to the Voiceless) and summary (This title is a direct quote from a conversation with Erasmus…)
I noticed that it shares the same size as this blog grid listing page – http://1c5.964.myftpupload.com/blog/blog-grid/
I want to keep the blog grid listing page the same size but ONLY change it on the homepage
Thanks
Hi navindesigns!
Please try the following to your child theme header.php file
<?php if(is_home()) { ?>
<style>
.avia-content-slider .slide-entry-title {
font-size:
}
.page .content .entry-content {
font-size:
}
</style>
<?php } ?>
let us know if that works out for you.
Cheers!
Basilis
I do not currently have a header.php file in my child theme. Can I just create a brand new one and add just this code you provided and save it in my child theme?
Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.home h3.slide-entry-title.entry-title {
font-size: 20px;
}
Cheers!
Yigit
thanks
what about the summary font size (“This title is a direct quote from a conversation with Erasmus…”)
any any update on this ticket which is directly related to this section
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.home .slide-entry-excerpt.entry-content {
font-size: 15px!important;
}
Best regards,
Yigit
That works. Thank you as always