Hi! I am wondering if there is a way to make the images on product pages rounded?
I have tried a few solutions I have seen on here, but none of them seem to work. My website is https://nuvocollection.com/
I would really appreciate any help on this!
Kind regards
1 Like
Hi @Theo_Bee
Try adding this CSS into theme settings > custom CSS
.swiper-zoom-container,
.swiper-zoom-container img {
border-radius: 18px !important;
overflow: hidden;
}
Hope that helps
Hello @Theo_Bee
Go to Online Store, then Theme, and select Edit Code.
Search for assets/base.css Add the provided code at the end of the file.
.product--medium .swiper-slide img {
border-radius: 20px;
}
1 Like
Hello @Theo_Bee
Go to online store ----> themes ----> actions ----> edit code ----> assets ----> swipper.css
add this code at the end of the file and save.
.swiper-zoom-container>img, .swiper-zoom-container>svg {
border-radius: 10px !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Thank you so much - this worked perfectly!
Much appreciated and kind regards
Theo
1 Like
Hello @Theo_Bee
You’re very welcome! I’m thrilled to hear that you’re pleased with the outcome. Don’t hesitate to reach out if you need further assistance.
like and accepting the All solution. Thank you!