Hi there – I’m using the visual editor and have added blog content on a page in a grid layout. I would like to do the following
1 – increase the size of the excerpt font under the blog title
2 – increase the margin underneath the post heading
I’ve added the following code but it’s not working
– can you please let me know what to target?
/*blog content grid shortcode in visual editor*/
avia-content-slider .slide-entry-title {
margin-bottom: 0 0 0.9em 0 !important;
}
/*increase the text for blog grid layout*/
div.slide-entry.entry-content{
font-size: 16px !important;
}
Thanks
Hi ShortieD!
Please use this:
.slide-entry-excerpt.entry-content {
font-size: 16px;
line-height: 24px;
}
.slide-entry-title.entry-title {
margin-bottom: 10px;
}
Best regards,
Ismael
worked a treat – thanks