Hello, can someone help me please? I need to center the collection list names and remove the arrows.
taneau.com (ride theme)
A user seeks help centering collection list names and removing navigation arrows on their Shopify store (taneau.com).
Solutions Provided:
Multiple contributors offered CSS code to add to the base.css file:
.card-wrapper .card__content { text-align: center; }.card__information .card__heading .full-unstyled-link .icon-wrap { display: none; } or .collection-list-wrapper span.icon-wrap { display: none; }Current Issue:
The CSS fixes work on desktop but fail on mobile devices. The user confirmed desktop functionality but continues experiencing problems with mobile responsiveness.
Latest Recommendation:
One contributor suggested adding !important flags to CSS rules and placing code in component-card.css instead of base.css to resolve mobile display issues.
Status: Ongoing troubleshooting for mobile version compatibility.
Hello, can someone help me please? I need to center the collection list names and remove the arrows.
taneau.com (ride theme)
Hello @atm19
I can help you. Please share your store URL first.
Hello There,
.card-wrapper .card__content {
text-align: center;
}
www.taneau.com it is on the homepage
Hi there @atm19
As per the guide and code provide by @ZestardTech you will be able to center the collection name in the center paste the below code to hide the arrow
.card__information .card__heading .full-unstyled-link .icon-wrap {
display: none;
}
Let me know if you face any issue
Hi @atm19 ,
Try adding below css to base.css file.
.collection-list-wrapper span.icon-wrap {
display: none;
}
Thank you
Thanks it works! But only on detskop version. Not on the mobile. What should I add ? The center and arrow remove for mobile version.
Thanks it works. But only on detskop version how can I have it also on the mobile version ?
Try adding important on each css
paste this code
.card__information {
text-align: center !important;
}
.card__information .card__heading .full-unstyled-link .icon-wrap {
display: none !important;
}
.card .icon-wrap {
display: none !important;
}
try this this must fix it. let me know if it fix
Hi @atm19
.collection-list-wrapper span.icon-wrap {
display: none;
}
bottom base.css or where? Sorry I don’t understand
Replace the previous codes with this one in base.css, remove the previously provided css I have included all of them.
Yes very bottom
it didnt work for the mobile version:(
what should i try other?
Place the same code in component-card.css to very bottom