Removing Collection name/title from homepage collection section

I have my collection on my homepage and they are already clickable, I want to remove the name/title under the collection image from my homepage. I read some of the discussions which show how to and I tried to edit the code but nothing happened, so I’m sure I am doing it wrong.

Using free theme: Craft

@ellaxobella can you please share the page link?

Hi @ellaxobella

Please add this code to Custom CSS in Online Store > Themes > Customize > Theme settings

.section-collection-list .card__content {
    height: 0px;
    padding: 0px;
    opacity: 0;
}

i did and it’s not working - i’m clearly doing something wrong

Where did you add the code?

@ellaxobella please add this css to the very end of your base.css file and check,
Shopify Admin → Online Store ->Theme → Edit code → base.css

.collection-card-wrapper .card__content{opacity:0;}

Hello @ellaxobella ,

Here are the steps to apply the necessary changes in your Shopify store:

  1. In your Shopify Admin, navigate to Online Store > Themes > Actions > Edit Code.
  2. Locate Asset > base.css and paste the following code at the bottom of the file:
.card a.full-unstyled-link {
    font-size: 0 !important;
}
.card span.icon-wrap {
    display:none !important;
}

Let me know if you need further assistance!

I added it all the way at the end and saved it. When I checked my website, it is still there. Nothing happened

I added it at the end of bss.css

I did exactly what you said and still does not look like how you did it. I don’t know what could I be doing incorrectly?

Hello @ellaxobella ,

I Went through your current design and it looks perfect.

Let me know if you need further assistance!

1 Like