Hi, I want to know how to round the edges of my featured collection just like the image below.
As a side-note I would need to adjust the width of the featured collection so the rounded edges are visible.
If anyone could help with this query I would be grateful. Thank-you for your time in advance.
Source - https://autoid.co/
Our page - https://rmtperformance.com/
1 Like
Hi @Reinhart
Do you mean like this?
If it check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
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:
.product-card-wrapper .card {
border-radius: 20px;
}
.card--card .card__inner .card__media {
border-top-right-radius: 20px;
border-top-left-radius: 20px;
}
And Save.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
No sorry, I want to round the edges of the collection itself, not the products within the collection.
However this is a useful modification it’s not what I was looking for!
1 Like
Oh, sorry I didnt read it right. I just read it quickly. You mean the collection section. I a bit confuse.
Like this?
This is the code I used.
.color-scheme-0c53d9fa-367e-4d04-a7db-5b93dc8bedcc.isolate.gradient {
border-radius: 50px;
}
And Save.
You can decrease/increase the size.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like
Awesome thanks for that, any idea how I decrease the width of the collection itself?
Yeah sure, only this featured collection right?
Same Instruction.
section#shopify-section-template--21139463143771__featured_collection_6kw4qH {
max-width: 90%;
margin: auto;
}
And Save.
You can decrease/increase the max-width in your liking.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
1 Like
Absolute Legend Mate, Thank-you for your time!!!
1 Like