How can I round collection images in Craft v. 11.0.0 theme?

Hi!

I would like to round the images for collections, what bit of code do I need to use? The theme I use is Craft v. 11.0.0 and I would like to have them full circles instead of squares.

Many thanks in advance!

Hey @ananna ,

Please provide the store URL

Hi @ananna

Would you mind to share your Store URL website? with password if its protected. Thanks!

This is Richard from PageFly - Shopify Page Builder App, I’d like to suggest this idea:

you can learn about the CSS property “border-radius” to be able to do this

Hope you find my answer helpful!
Best regards,
Richard | PageFly

Hi!

URL is this:

d43c26.myshopify.com

and password I now set as:

ylsi123

Thanks!

Hi!

URL is this:

d43c26.myshopify.com

and password I now set as:

ylsi123

Thanks!

Hey @ananna ,

Add the following code to the bottom of your component-card.css file:

.card__inner {
  border-radius: 50% !important;
  width: 20em !important; /* Adjust the width as needed */
  height: 20em !important; /* Adjust the height as needed */
  overflow: hidden;
}

Thank you for the information. Is this solve?

Thank you very much!