How to remove title of the collection in the collection section

Hi, everyone,

How do I remove the Collection Title on the Collection List? Please see attached picture. I want to get rid of the title “LEKI” and just leave the image.

Website is: theoutdoorarmory.com

Theme: Xtra

Thank you!

Outdoor Armory

Hi @outdoorarmory

To do that, you can add this code to Custom CSS in Online Store > Themes > Customize > Theme settings.

.category li h5 {
opacity: 0;
height: 0;
z-index: 9;
margin: 0;
}

@outdoorarmory I think you already have removed the text, if no then can you please share the screenshot?

I saw on your website that the easiest way, as DAN-FROM-Ryviu suggested, is to add the code to the custom CSS section in your theme customization settings.

div.collection-wrapper div header h2 {
display :none;
}

Hi @outdoorarmory

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.css / based.css file and paste the code in the bottom of the file.
ul.l4cl.category.orientation-square.w12.mobile-compact.mobile-scroll.w50-mobile li:nth-child(1) h5 {
    display: none !important;
}

If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!

Hi @outdoorarmory ,

To remove the collection title on the Collection List page, follow these steps:

  1. Go to Online Store > Themes in your Shopify admin.
  2. Click Customize to open the theme editor.
  3. In the theme editor, select the Collection Menu.
  4. Under the Template section, click on Collection.
  5. turn off the Title then save it.

This will hide the collection title from being displayed on the collection list.