How can I round the edges of collection boxes on my website?

please tell me how i can round the edges for the boxs in the attached image -

website - parisianbakers.com

1 Like

Hi @ray77 ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss->paste below code at the bottom of the file:
.collection-collage__item-wrapper .collection-grid__item-overlay {
    border-radius: 50%;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Best regards.

.collection-grid__item-overlay.grid__image.lazyloaded {
    border-radius: 20px !important;
}

@ray77
Add this code in the bottom of the theme.scss or Theme.css file

@ray77
if helpful,
Like and accept our Solution.