Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello, guys! How can i make my collection list full width AND also remove the text under the images 'CLOTHING ->; FOOTWEAR ->; ACTIVEWEAR ->'?
Website: https://fddd3f.myshopify.com/
Password: asd321
Hello @kitchencrafted
Hello
1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find Asset > base.css and paste this at the bottom of the file:
.collection-list-wrapper.page-width {
max-width: 100%;
}
Hello! Thanks for your solution! How can I remove the text under the pictures?
'CLOTHING ->; FOOTWEAR ->; ACTIVEWEAR ->'
Just simple make the font size to 0px
collection list --> scroll down to custom css --> add the code 🙂
.card__heading {
font-size: 0px;
}
I also needed this, and it worked perfectly after multiple other suggestions failed. Thank you!