Resize Front Page Feature Image and Wrap Text

How can I make the Blog Front page and blog category pages resize all of the featured images to the same specified size and wrap the post heading around the right side of image instead of below them? I want to give the images on the front page about a 132x132 space with the titles starting next to them on the right side.
Thanks for your help.

Hi @pspr,

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 -> Unite Options -> Other -> Custom CSS

body.category article img.thumbnail,
body.blog article img.thumbnail {
    float: left;
    max-width: 132px;
    margin-right: 10px;
}
body.category article .entry-meta,
body.blog article .entry-meta {
    clear: both;
}

Best Regards,
Movin

Thanks again, Movin. That did the trick perfectly.

Wally

You are most welcome here :slight_smile: