How can I add corner radius for this section?
Website: https://prettycious.com/
Theme: Prestige
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:
.content-over-media or .content-over-media--auto with border-radius values ranging from 10px to 25pxCurrent 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.
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 ![]()
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;
}
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!
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!