Does anyone know how to remove the arrows next to these links below? I am using the Dawn theme.
Pictured below:
Welcome to shopify community.
Please share your store URL and if your store is password protected then please provide password too.
Thank you.
Hi Libby,
This solution will remove all these arrows in Dawn Theme .
Go to the code editor, open the file Assets > base.css and in the end of the file copy this code. It will change the properties of the selector “.icon-arrow”, save the changes and open the preview to see the result.
.icon-arrow {
display: none;
}
Note: It is good practice to make a backup version of your site, avoid working in the original version
I hope this helps!
All the best, Bruno
OUTSIDEGRID
You can find more solutions in my blog or in my Youtube channel
Hello @Libbyallison
In your Shopify Admin go to online store => themes => actions => edit code
Find Asset => component-card.css and paste this at the bottom of the file:
span.icon-wrap {
display: none;
}
Thanks.