How to get rid of the multicolum link arrows
Topic summary
A user seeks to remove arrow icons from multicolumn sections on their Shopify store.
Solution provided:
- Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
- Open the CSS file (base.css, style.css, or theme.css) in the Assets folder
- Add the following CSS code at the bottom:
.multicolumn-card__info .icon-wrap {
display: none;
}
- Save the changes
Result: This CSS rule hides all arrows across all multicolumn sections by targeting the icon wrapper element and setting its display property to none.
Hi @iHavPet
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:
.multicolumn-card__info .icon-wrap {
display: none;
}
And Save.
Result:
Note: This will remove all the arrows in all multicolumn section.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

