Hello! On my Home Page, I show a few product collections. As seen in the screenshot below, the collection names appear underneath the image; they are left justified and have an arrow.
I need assistance with two items:
- Center the collection names
- Remove the arrow
Thank you!
Hi @sabtsmith
Just follow this instructions below
- In your Admin page, go to Online store > Themes
- Choose the theme you want to edit then click Actions > Edit code.
- Open the base.css under the Asset folder.
- Add the code below.
.collection-list .full-unstyled-link {
text-align: center;
}
.collection-list span.icon-wrap {
display: none;
}
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset >base.css and paste this at the bottom of the file:
.collection-list .full-unstyled-link {
text-align: center;
}
.collection-list span.icon-wrap {
display: none;
}
Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance.