I want to get round corners on all product cards, images, collections and the front page. I’m using the prestige theme. Thanks.
Hi @Theo69
Can you share with me your store URL to check further?
Hi @Theo69
Thanks for sharing:
You can change the border of images on your store by following this instruction:
-
Go to Shopify > Theme > Customize
-
Copy and paste this code on Theme settings > Custom CSS section
.image-with-text img {
border-radius: 10px !important;
}
.blog-post-card img {
border-radius: 10px !important;
}
.product-card__media img {
aspect-ratio: auto !important;
border-radius: 10px !important;
}
I hope it helps.
Liz
Hi Liz,
It helped to round the corners on some images on the home page. It did not
help with the images in the collections.
Theo
Hi Liz, I have to correct myself. It worked!!! Thank you so much!
one more thing: on these 3 pages it is not working properly:
https://ambrosia-nektar.com/blogs/greece-unknown
Hi @Theo69 ,
You can add the code below to Custom CSS section :
.featured-blog-post {
background: none !important;
}
.featured-blog-post img {
border-radius: 10px !important;
}
.multi-column__item img {
border-radius: 10px !important;
}
I hope it helps.
Thank you so much!!!