Hey everyone, just need a hand on how to remove these icons at the bottom of my page. I assume I need to edit the code
Topic summary
A user needed help removing icons and text appearing at the bottom of their product page. Multiple solutions were provided:
Initial Attempts:
- First suggestion targeted only the icons using CSS to hide
.multicolumn-card__image-wrapper--third-width .media--square - User clarified they wanted to remove both icons AND all accompanying text
Working Solutions:
Two complete solutions were offered, both using CSS to hide the entire multicolumn section:
-
Via Theme Customizer: Navigate to Shopify admin → Online store → Customize → Theme settings → Custom CSS, then add
.multicolumn { display: none !important; } -
Via Code Editor: Go to Online Store → Edit Code → Find theme.css/base.css file, then add
.multicolumn.color-background-1.gradient.background-primary.no-heading { display: none !important; }
Outcome:
The issue was resolved. The user confirmed success and appreciated the step-by-step screenshots provided with the solutions.
Hi @Bunny2 , go to base.css and add the following code :
.multicolumn-card__image-wrapper--third-width .media--square {
display:none;
}
Result:
hi i want to remove the icons and all the text how do i do that?
Hi @Bunny2
I hope you are well. You can follow our instructions below:
1/ Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
2/ From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/iDxwa8zBQ4Z-
3/ Copy the code below and paste it there
Here is the code for Step 3:
.multicolumn {
display: none !important;
}
Please let me know if it works. Thank you!
Hello, @Bunny2
- Go to Online Store
- Edit Code
- Find theme.css/base.css file
- Add the following code in the bottom
.multicolumn.color-background-1.gradient.background-primary.no-heading {
display: none !important;
}
Thanks!
Thank you so much. The screenshots also made it a lot easier!


