Dear community,
I want to make some adjustments to my store. I’d like to know the following things:
- How do I change the border radius of my PRODUCT IMAGES on the PRODUCT PAGE and HOME PAGE
Website: https://coffee-chains-test.myshopify.com/?_ab=0&_fd=0&_sc=1
Password: owl
Theme: Motion
1 Like
@blcksoap
sorry but i can’t see its already fix this issue do you have anther store or theme?
1 Like
Hi Ketan,
It’s not fixed I manually changed the photos but I’d like to change the
coding which makes it easier.
1 Like
Hi @blcksoap ,
You can follow the instruction below:
- Go to Online Store->Theme->Edit code
- Asset->/theme.css->paste below code at the bottom of the file:
.product__photos img {
border-radius: 15px !important;
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
1 Like
@blcksoap
yes, please try this code
- Go to Online Store->Theme->Edit code
- Asset->/theme.css.liquid->paste below code at the bottom of the file.
.product__photos img {border-radius: 20px;}
1 Like
Thank you this worked!
Do you also have a coding for the border of product image in CART DRAWER?
Hi @blcksoap ,
You can follow the instruction below:
- Go to Online Store->Theme->Edit code
- Asset->/theme.css->paste below code at the bottom of the file:
#CartDrawerForm .image-wrap img {
border: 1px solid #000;
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
1 Like
Hi,
This didn’t work unfortunately. The borders turned into black.
I want the following effect in the cart drawer:
Hi @blcksoap ,
You can follow the instruction below:
- Go to Online Store->Theme->Edit code
- Asset->/theme.css->paste below code at the bottom of the file:
#CartDrawerForm .image-wrap img {
border-radius: 15px;
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
1 Like