Make Gallery Carousel Photos Rounded

Topic summary

A user wanted to add rounded corners to images in their gallery carousel on a Shopify store using the Stiletto theme. The images originally had straight corners.

Solution provided:

  • Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
  • Open the CSS file (base.css, style.css, or theme.css) in the Assets folder
  • Add the following CSS at the bottom:
.gallery-item__image-wrapper.hover {
    border-radius: 10px;
}
  • Save the changes

Outcome: The solution successfully rounded the gallery carousel image corners. The issue was resolved and marked as solved by the original poster.

Summarized with AI on November 3. AI used: claude-sonnet-4-5-20250929.

Hey folks!

I want to have the images inside my gallery carousel with rounded corners.

This is how it looks now:

As you can see, the photos have straight corners, and I want them to be a bit rounded.

My theme is Stiletto and my website is: https://kv4bbbag5hlpi4gm-60150284501.shopifypreview.com

I would really appreciate some help with this one folks!

1 Like

Hi @martujv

TRy this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.gallery-item__image-wrapper.hover {
    border-radius: 10px;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

This is perfect! Thank you!