Hey All,
I believe I have messed up somewhere and not being a Shopify guru or coding guru I am hoping someone can help.
I added a code to remove the titles below my collection images on the homepage as I wanted it to look a lot cleaner, but in the process it seems I have stopped the collection images being clickable (so it takes you to the said collection).
Can anyone help please?
www.craftycupsupply.com
PW: noldah
you have removed the anchor tag from images that’s why they are not clickable anymore, what you need to do is
- Undo the changes you have made.
- Add the following code to hide the title of the collection in either base.css file or any CSS file.
.collection-list .card__text {
display: none;
}
Thanks for the reply, I’ve reverted my store back to a copy before I made the changes - I have tried the code above in both base.css and another and nothing changed (descriptions still showing below collection on homepage).
ooh, I have checked your store has a different selector, add the following code it should work fine.
.collection-list-wrapper .card__content{
display:none;
}
Thank you again for taking the time to respond. I have tried this and although it does indeed remove the title it still makes the collection images unclickable 
Yes, you are right images are not clickable now. Looks like this can be done by editing the backend code only. it’s difficult to tell you what code changes are required,
To achieve this need to look into the backend of the code.