Goal: show collection images as circles on the Artists page and as squares on the Fabrics page without editing the source photos.
Proposed CSS (add via theme settings or section Custom CSS):
Artists (circular thumbnails): apply on the image element
.collection-list__thumbnail img { border-radius: 100%; object-fit: cover !important; }
This uses border-radius to clip to a circle and object-fit to crop while keeping aspect ratio.
Fabrics (square, well-cropped):
.product__thumbnail img { object-fit: cover !important; object-position: 50% 20%; }
object-fit fills the square; object-position shifts the crop to avoid cutting heads.
Alternative suggestion: round the container
.collection-list__thumbnail .product-wrap { border-radius: 50%; background: #000; }
This masks via the wrapper; background color fills beyond the image if needed.
Implementation note: ensure added styles in the Collection template are wrapped with ….
Attachments: multiple screenshots illustrate the CSS targets and results; links to the Artists and Fabrics pages were provided for context.
Status: no confirmation of implementation yet; solutions supplied, discussion appears open.
Summarized with AI on December 11.
AI used: gpt-5.
Looking for some css help. We’re trying to get all our collection images to be restricted to a circle image without having to update all our photos. Can anyone help?