how to make it square image

Hi

Is there a way to show the image as square instead of a hardcrop rectangle?

https://www.readtrywrite.com/home/

Hey there,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*square image on blog posts*/
.blog img.thumbnail{
  object-fit: cover;
  width:230px;
  height:230px;
}

Best regards,
Support.