Hello Team,
I have been traversing the forum looking for code that will resize the blog images to make them all the same size and contained within the elements content box. I found code that helps with the front page image:
.blog.entry-thumb img {
display: block;
overflow: hidden;
width: 400px;
height: 400px;
-o-object-fit: cover;
object-fit: contain;
}
But at times some images expand beyond their boundary.
My question is that once you click on the front page blog to get to read the article the div.entry-featured or the div.entry-thumb image is expanded beyond it’s boundaries. And I am trying to utilize the code I found here in the forum but it seems I need some help with this. 
Here is a link to see what I am talking about with the :
And the code that I tried using is below:
/* Change header image for blog post */
div.entry-thumb img {
display: block;
overflow: hidden;
width: 400px;
height: 400px;
-o-object-fit: cover;
object-fit: cover;
}
I have tried both div.entry-featured or the div.entry-thumb and the image still does not resize to fit in the element’s content box.
Could you help and let me know the correct code on both the front page blog and the secondary blog images?
Thank you.
Regards,
Robert
