Casper theme – image formatting guidelines?

Hi there,

I’ve using the default Casper theme and find a frustrating thing happen – because posts can appear in 1-column and 3-column shapes on the front page, the post image is resized, variously cropping the wrong parts of the image. Are there any guidelines about how to avoid this behaviour?

Thanks,

S.

Hi! There’s multiple ways in which you could change the design so your images don’t get cropped so much. One way is by using CSS to prevent image cropping at all, try putting this into one of the code injection blocks:

<style>
.post-card-image {
      object-fit: contain;
}
</style>