Have you specified a feature image for each post? You can do that from
Posts -> All Posts -> Edit (the post you want to add a feature image to) -> Featured Image (bottom right corner)
Once you’ve done that, the image you’ve chosen will appear on the left side of the post. Do that for all your posts and it will look great.
Cheers =)
Thread Starter
Stev3n
(@stev3n)
After a two hour long search, I found it. It’s in the style.css, located in the root folder of the theme. I managed to force the size of my images to 250×210 with the following code:
.blog-thumb img {
display: block;
max-width:250px;
max-height:210px;
width: 100%;
height: 210px;
}
Thanks anyways =)