How can I adjust the collection list to full width and remove text under images?

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 ->’

I also needed this, and it worked perfectly after multiple other suggestions failed. Thank you!

Just simple make the font size to 0px

collection list → scroll down to custom css → add the code :slightly_smiling_face:

.card__heading {
  font-size: 0px;
}