How can I delete collection titles from my front page without affecting product titles?

How can I remove the collection titles when using collection lists on my front page? My theme is dawn. I tried this code:

.card__heading .full-unstyled-link {
width: 0 !important;
height: 0 !important;
font-size: 0px !important;
color: white !important;
}

under base.css in the Assets-folder, but that also removed my product titles when viewing the products in collections, which I do not want.

Hi @sannakim ,

Can you please share your website link so I can check the issue?

Cheers :slightly_smiling_face:

Technika

Hello @sannakim

You can follow these steps:

  1. Go to Online Store->Theme->Edit code

  1. Open your theme.liquid file, paste the below code before

{%  if template contains 'index' %}   

    {%  endif  %}

I hope the above is useful to you.

Kind & Best regards,
GemPages Support Team

@sannakim

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

Hello there,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >base.css and paste this at the bottom of the file:
h1.title.title--primary {
display: none;
}

Hi @sannakim ,

This is Victor from PageFly - Landing Page Builder App.

You can try this code by following these steps:
Go to Online store => themes => actions => edit code and add this code on file base.css

.card__heading{
display: none !important;
}

Hope this answer helps.
Best regards,
Victor | PageFly

Thanks!! This worked, and did not remove product titles on all our products :blush: