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:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- 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:



