Remove extra 'No image' placeholder in homepage collections section

Hi,

On my homepage I have a Collections section. I’ve manually selected the collections I want to display, but there’s an extra “No image” placeholder showing underneath them.

I don’t think this is related to the number of collections or columns, I’ve tried setting it to 1, 2, or 3 collections, and the “No image” placeholder still appears.

How can I hide this placeholder completely so that only my chosen collections are visible?

Thanks in advance!

Hello @Monness

Can you send the collaborator code request, I will take a close look.

You can do that by adding this code to the Custom CSS of that section

.collection-card { display: none; } 

Hello @Monness,

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.

 .collection-card {
    display: none !important;
}

If this code works, then please mark my comment as the solution.
Thank you.

that was so easy, thank you so much!