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.
In Canada, payment processors, like those that provide payment processing services t...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025Learn how to increase conversion rates in every stage of the customer journey by enroll...
By Shopify Mar 5, 2025