How to add corner radius in a collection

Topic summary

A user seeks to add corner radius (rounded corners) to a collection section on their Shopify store using the Prestige theme.

Solutions Provided:
Multiple respondents offered similar CSS-based solutions:

  • Navigate to Shopify Admin β†’ Online Store β†’ Themes β†’ Edit code
  • Locate the base.css, theme.css, or styles.css file
  • Add CSS code targeting .content-over-media or .content-over-media--auto with border-radius values ranging from 10px to 25px
  • Save the file

Current Status:
The original poster confirmed the solution worked initially. However, a new issue emerged: the border-radius CSS is unintentionally affecting their slideshow element as well, which they want to exclude from the styling. The discussion remains open as this secondary problem needs resolution.

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

How can I add corner radius for this section?

Website: https://prettycious.com/

Theme: Prestige

1 Like

Hi @memahmudhassan ,

You can try this code by following these steps:

Step 1: Go to Shopify Admin β†’ Online Store ->Theme β†’ Edit code

Step 2: Search file base.css, theme.css or styles.css

Step 3: Insert the below code at the bottom of the file β†’ Save

.content-over-media.content-over-media--auto {
    border-radius: 10px !important;
}

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it asa solution. Thank you :heart_eyes:

Hi @memahmudhassan

Go to Online Store, then Theme, and click on Edit code.

Locate the file assets/theme.css, and paste the code provided below at the end of the file.

.content-over-media {
border-radius: 25px;
}

1 Like

Hello @memahmudhassan

This is Amelia at PageFly - Shopify Advanced Page Builder app.

You can try the following steps I have provided to help you solve the problem you are facing:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file base.css or theme.css or style.css

Step 3: Add code

.content-over-media--auto {
    border-radius: 20px !important;
}

Hoping my solution helps you solve your problem.

Best regards,

Amelia | PageFly

Thanks brother. It’s worked!

1 Like

Hi @memahmudhassan

Great to hear that the issue has been resolved! If you need any further assistance, feel free to reach out.

Brother, to applying this, facing a issue, when applying it’s also working for my slideshow which I don’t want!