We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

How to change corner radius on the images on Robin Pro Gallery?

Solved

How to change corner radius on the images on Robin Pro Gallery?

atmos-art
Explorer
58 0 10

Hi,

 

I would like to change all of the corners to 6.4px border radius but not sure how to achieve this.

URL: www.atmos.art 

 

I tried adding this into the css section for this app but it didn’t work.

 

.img {
border-radius: 6.4px
}

 

Please advise.

 

Screenshot 2025-05-29 at 13.38.50.png

Accepted Solution (1)
websensepro
Shopify Partner
2144 268 319

This is an accepted solution.

Try this code 

<style>
.robin-pro-image-gallery * {
    border-radius: 15px !important;
}
</style>

If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP

View solution in original post

Replies 10 (10)

suyash1
Shopify Partner
11112 1367 1751

@atmos-art Can you please share this page link?

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com
atmos-art
Explorer
58 0 10

Hi, I forgot to include it in the post. Here you go URL: www.atmos.art 

suyash1
Shopify Partner
11112 1367 1751

@atmos-art please add this css to the very end of your base.css file and check,
Shopify Admin -> Online Store ->Theme -> Edit code -> base.css

 

.robin-pro-image-gallery a.robin-pro-thumbnail-link img {border-radius: 20px !important;}

 

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com
atmos-art
Explorer
58 0 10

Hi this semi-works. It changes the border radius of the corners but the hover overlay still has a 0px radius. Do you know how to make this the same?

suyash1
Shopify Partner
11112 1367 1751

@atmos-art - I think other code has helped you to solve this issue

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com
atmos-art
Explorer
58 0 10

That’s right. Thank you so much for helping though! I appreciate it.

websensepro
Shopify Partner
2144 268 319

Hi @atmos-art 
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>

<style>
.robin-pro-image-gallery  {
    border-radius: 15px !important;
}
</style>

websensepro_0-1748523122389.png

 

If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP
atmos-art
Explorer
58 0 10

Hi, this doesn’t work for me unfortunately.

websensepro
Shopify Partner
2144 268 319

This is an accepted solution.

Try this code 

<style>
.robin-pro-image-gallery * {
    border-radius: 15px !important;
}
</style>

If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!

Need a Shopify developer? Hire us at WebSensePro For Shopify Design Changes/Coding
For Free Tutorials Subscribe to our youtube
Get More Sales Using Big Bulk Discount APP
Create Your Shopify Store For Just 1$/Month
Get More Sales Using Big Bulk Discount APP
atmos-art
Explorer
58 0 10

Hi, that worked great and solved the overlay issue I was having with the other code provided. Thank you!