post titles for Activello WordPress theme

hi

is there any way to change the way the layout of the post takes? attached is an image of my post. Can I use code to remove the date/read more/leave comment lines and tighten up the gaps, leaving the image to remain clickable to follow thru to the story? Its just all a bit too gappy at the minute for me but i love the template and want to stick with it…

Hi @garymcgarvey,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

body.blog article .comments-link,
body.blog #main article .read-more,
body.blog article span.posted-on {
    display: none;
}

body.blog #main article .post-inner-content{
padding-bottom: 10px;
}

Best Regards,
Movin