Featured Image Thumbnail Sizing

I’ve approached this problem in a few different ways, here’s some ideas: Just grad the medium sized thumbnail with the_post_thumbnail(‘medium’); (or any defined size that is bigger than what you want displayed), and apply a .inner .thumb img {width: 153px; height: auto;} css rule. If it’s too tall it will get cropped from your overflow:hidden; … Read more

WordPress crop image not working [closed]

It’s possible your theme is setting width: auto; on the image, possibly as part of some responsive tweaking. This would cause it to keep its normal proportion but with the specified height. Can you provide a URL to look at?