Sourcedinuk Collection Title

How can I hide the collection title on on this first collection on the home page of my store ?

Hi @ti7,

Please go to Customize > Theme settings > Custom CSS and add code:

.collection-item--below .collection-item__title {
    display: none;
}

This code should go to the “Custom CSS” of this Section, not in Theme settings, otherwise it will apply to collection titles anywhere on your site.

.collection-item__title {
  display: none;
}

Hey @ti7

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above </ body> tag
<style>
.collection-item--below .collection-item__title {
    display: none !important;
}
</style>

RESULT:

If you require any other help, feel free to reach out to me. If I managed to help you then a Like would be truly appreciated.

Best,
Moeed

Hi @ti7 ,
Please add the following code to the Custom CSS section of the Featured Collections.

.collection-item__title{
    display: none;
}

*Result:

If you want to hide collection title of that section only then please add this code to Custom CSS of that section from Online Store > Themes > Customize

.collection-item__title { display: none; }