title collection list

image.png

hi guys, how are you all doing?

I need to remove the title of my colletions in the main page of my website. I know this question has been asked anytime but very code to remove title didn’t work for me. can someone help me?

thanks a lot

Tim

Hi @Timothee2018 . Which theme you’re using and can you share your store url?

Hi,

https://popinternationalmarvel.myshopify.com

do you want this ?

https://admin.shopify.com

or this?

We can’t access your admin.

Do you want to remove the title only from homepage or from all pages?

Hi @Timothee2018 ,

You can try this code by following these steps:

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file base.css, theme.css or styles.css

Step 3: Insert the below code at the bottom of the file → Save

.collection-list-wrapper ul li .card__heading {
    display: none !important;
}

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it asa solution. Thank you :heart_eyes: :heart_eyes:

If from all pages, then go to your base.css and add the following code:

.card-wrapper .card__content {
display: none !important
}

@Timothee2018

Follow these Steps:

  • Go to Online Store
  • Edit Code
  • Find theme.liquid file
  • Add the following code in the bottom of the file above tag

HI!

thank you so much legend :slightly_smiling_face: so helpful :folded_hands:

tim

hi, how are you today?

when I followed you method to remove the collections lists title it worked well. thanks for that. but now, my collections are not clickable anymore. why?

tanks for your reply

tim

1 Like

Hi @Timothee2018 , Pls replace my old code to this new code :

.collection-list-wrapper ul li .card__heading {
    opacity: 0 !important;
}

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it asa solution. Thank you :heart_eyes:

thanks legend :heart_eyes:

1 Like

@Timothee2018 We’re happy to see that our suggestion helped you solve your issue. This can be a reference for other merchants if they have an issue like you. Should you need any further information, please do not hesitate to contact us by tagging directly at Community post. We will check and let you know soon. Thanks in advance.

is there a way to have this Heading shown, but it is aligned to the left?