Hello,
I am using DAWN theme. I would like to remove the arrows in the “Multicolumn” block for the links. I have found code that does this and works (see pic attached) - however, I would like the text to be recentered after removing the arrows.
The code above seems to hide the arrows (rather than eliminating that space) and doesn’t re-center the text…
Thanks!
My URL is embroideryandsage.com
Hello @embroiderysage
Here are the steps to apply the necessary changes in your Shopify store:
- In your Shopify Admin, navigate to Online Store > Themes > Actions > Edit Code.
- Locate Asset > base.css and paste the following code at the bottom of the file:
.multicolumn-card__info .animate-arrow .svg-wrapper {
display: none !important;
}
Let me know if you need further assistance!
1 Like
Brilliant - that worked! Thanks so much!!
1 Like
Hi,
Hope this will help
- Step 1: Go to Your Theme Code.
- Step 2: Find Right File
- Step 3: Remove or Comment Out Arrow Code
{{ ‘→’ | escape }}
or
<svg class=“icon icon-arrow”…>
- Step 4: Fix the Alignment with CSS (base.css)
CSS Example
.multicolumn-card__link {
justify-content: center !important; /* Center the text horizontally */
text-align: center !important; /* Ensure the text itself is centered */
gap: 0 !important; /* Remove space between text and arrow */
}