Re: Make corners of all images round

Solved

Make corners of all images round

INFRA
Shopify Partner
187 0 67

Hi there,

 

I've made the corners of all images on my homepage round, but I want this on all product page templates, on the recommendations section and the collection pages too. Is there a way to do it all at once?

 

I've used this code: {
border-radius: 20px;
}

 

website

password: chaos

 

Thanks!

Accepted Solution (1)

AnneLuo
Shopify Partner
1293 227 263

This is an accepted solution.


You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code before the </head> tag

<style>
img {
  border-radius: 20px;
}
</style>


Hopefully it will help you. If yes then Please don't forget hit Like and Mark it as solution!

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to Email Me   

Buy Me A Coffee

View solution in original post

Replies 2 (2)

AnneLuo
Shopify Partner
1293 227 263

This is an accepted solution.


You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code before the </head> tag

<style>
img {
  border-radius: 20px;
}
</style>


Hopefully it will help you. If yes then Please don't forget hit Like and Mark it as solution!

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to Email Me   

Buy Me A Coffee

INFRA
Shopify Partner
187 0 67

worked perfectly, thank you!!