Shopify themes, liquid, logos, and UX
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
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.
Solved! Go to the solution
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!
@atmos-art Can you please share this page link?
@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;}
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?
@atmos-art - I think other code has helped you to solve this issue
That’s right. Thank you so much for helping though! I appreciate it.
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>
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Hi, this doesn’t work for me unfortunately.
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!
Hi, that worked great and solved the overlay issue I was having with the other code provided. Thank you!