How do I make featured collection borders unrounded?

Topic summary

A user sought help removing rounded corners from featured collection borders on their Shopify store. An image showed product cards with rounded corners that needed to be squared off.

Solution provided:

  • Remove or modify CSS code in assets/custom.css
  • Specifically target the border-radius: 24px property in .card-wrapper .card and .card-wrapper .card .card__media selectors

Outcome:
The issue was successfully resolved, confirmed by a follow-up screenshot showing the product cards now display with square corners instead of rounded ones.

Summarized with AI on October 29. AI used: claude-sonnet-4-5-20250929.

As you can see from this image, its currently rounded corners, how do i make it so that it’s not?

https://www.audette.store/products/blush-butter (code: test)

remove this code from assets/custom.css

.card-wrapper .card, .card-wrapper .card .card__media {
border-radius: 24px;

}

It seems like you have sorted this out.

Thanks

1 Like