Hi! is it possible to round of the corners of the shopify product description images. The ones that you add when you are writing the product description, not the main images.
Hey @LuddeP3
Kindly share your Store URL and Password if enabled
Hello There,
Please share your store URL and password.
So that I will check and let you know the exact solution here.
store name is migranhuvan.se , there is no password. Also now my variant capsules are messed up, i dont know if i changed something in the code, i would like them to be filled with colours if you know what i mean
store name is migranhuvan.se , there is no password. Also now my variant capsules are messed up, i dont know if i changed something in the code, i would like them to be filled with colours if you know what i mean
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > theme.css and remove this code the file:
.product__media img {
border-radius: 5px !important;
}/*
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > theme.css and paste this at the bottom of the file:
.product__media img {
border-radius: 50px!important;
}
I cant find theme.css under assets, only theme-editor.js
Hey @LuddeP3
Follow these Steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- Add the following code in the bottom of the file above tag
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
@LuddeP3
Hello, Add This CSS Code Go To Online Store >Select Theme > Edit Theme > Assets > theme.css
.product__media img {
border-radius: 50px !important;
}
Note: border-radius manage as per your requirement
Like This
Hello @LuddeP3
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > base.css and remove this code the file:
Hello @LuddeP3
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.
.product__description img {
border-radius: 35px !important;
}