How can I style my collection images to be curved at the top?

Topic summary

Goal: Make collection images display with a curved/rounded top in the Shopify Dawn theme.

Key solution:

  • Use CSS border-radius to round only the top corners of the collection cards. One suggestion: border-top-left-radius and border-top-right-radius (e.g., 25px), adjustable to taste.
  • Final implemented approach: Edit Online Store > Theme > Edit code > Assets > base.css and add:
    .collection-card-wrapper .card { border-radius: 300px 300px 0 0; overflow: hidden; }
    This rounds the top-left and top-right corners while keeping the bottom corners square; overflow: hidden ensures the image is clipped to the curved shape.

Outcome:

  • The original poster confirmed the fix worked. Another participant noted it was helpful.

Status: Resolved. No remaining open questions.

Notes:

  • border-radius is the CSS property that controls corner rounding; values can be adjusted to change the curve depth.
Summarized with AI on January 12. AI used: gpt-5.

Hello, I would like to have my collection images curved at the top. The images are currently saved curved but I want them to be styled so that, when you upload a collection image it formats it so its curved like this.

I am using the Dawn theme - thanks in advance.

https://daydreamerluxe.myshopify.com/

password: beautybossmedia

1 Like

Hello there

If you find the correct file, and add the css it should look something like this for the collection id

border-top-left-radius: 25px;
  border-top-right-radius: 25px;

note you can adjust the 25 to be whatever curve you want, this is an example

Hope this helps

Hi :blush: yes I saw that I could do this, but I’m not sure which part of the code to add it to

@Sammiejojojo

yes, please add this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/base.css ->paste below code at the bottom of the file.
.collection-card-wrapper .card {
    border-radius: 300px 300px 0 0;
    overflow: hidden;
}

After Code view

2 Likes

You are an angel thankyou!

1 Like

This was helpful!!

1 Like

@Sammiejojojo
its my pleasure to help us if you want any more help please let me know

@jdimari4
its my pleasure to help us if you want any more help please let me know