Home › Forums › Pro Support › What makes some images shrink to fit and others stay original size › Reply To: What makes some images shrink to fit and others stay original size
April 27, 2020 at 5:01 pm
#15105
Keymaster
Right now you have the width and height set to 300px, which will crop the image. What happens if you only add one value (width or height), then add this CSS:
.wpsp-card .wp-show-posts-image img {
object-fit: unset;
}
Let me know 🙂