Shopify themes, liquid, logos, and UX
I'm trying to remove the rounded corners from the top of the images and nothing is working, would love some help please.
website url is : macmercuri.com
Solved! Go to the solution
This is an accepted solution.
@shopgrande - add this css to the very end of your base.css file and check
.multicolumn-card__image-wrapper {border-radius: 0 !important;}
This is an accepted solution.
@shopgrande - add this css to the very end of your base.css file and check
.multicolumn-card__image-wrapper {border-radius: 0 !important;}
There is already an option in the theme customization to manage the border radius. Please check the screenshot I attached.
You can go to the theme settings > Product cards > Corner Radius set to 0.
Please check the below screenshot for reference.
@shopgrande Please follow below steps to remove rounded corners from multicolumn images. Let me know whether it is helpful for you.
.multicolumn-card .multicolumn-card__image-wrapper {
border-radius: unset !important;
}
Hello There,
1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find Asset > base.css and paste this at the bottom of the file:
.multicolumn-card__image-wrapper {
border-radius: 0 !important;
}
Hello @shopgrande
You can add code by following these steps
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. Paste the below code before </body> on theme.liquid
<style>
.multicolumn-card>.multicolumn-card__image-wrapper--full-width:not(.multicolumn-card-spacing) {
border-top-left-radius: unset !important;
border-top-right-radius: unset !important;
}
</style>
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
June brought summer energy to our community. Members jumped in with solutions, clicked ...
By JasonH Jun 5, 2025Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025