How can I hide Collection Titles in Prestige Theme on homepage?

Hi There,

In Prestige theme I am looking to hide Collection Titles on the homepage

Store URL: https://mt-elephant.myshopify.com/

Thanks so much for your help :slightly_smiling_face:

Hello MissJGo,
Your site is password protected.
Can you share your store password?

1 Like

Oops! @oscprofessional Yes of course: ohltah

Hello MissJgO,
Add this css at the bottom of
Online Store->Theme->Edit code->Assets->theme.scss.liquid

#shopify-section-1595747976625 .SectionHeader__Heading.Heading.u-h1 {
    display: none;
}
#shopify-section-1595748384564 .SectionHeader__Heading.Heading.u-h1 {
    display: none;
}
1 Like

Thanks so much @oscprofessional , this worked perfectly!

Hi @oscprofessional ,

Thank you again for the solution! Just on the same topic of hiding the collection title - is there any way to remove the empty space where the collection title would be?

Thanks for your help!

Hi! Is there a solution for this for the Debut theme?

Hello MissJgO,
To remove the empty space where the collection title.
Add this css at the bottom of
Online Store->Theme->Edit code->Assets->theme.scss.liquid

#shopify-section-1595747976625 header.SectionHeader.SectionHeader--center {
    display: none;
}
#shopify-section-1595748384564 header.SectionHeader.SectionHeader--center {
    display: none;
}
2 Likes

Thanks again @oscprofessional it worked perfectly!

Hi. Do you by any chance know how to keep the title but remove the description for collection pages in Prestige? I’ve got lengthy blurbs for SEO purposes and I can’t figure out how to remove them without losing the title also.

Any help much appreciated!

Hi,

Are you saying about meta title & description or page title & description?

I’m not sure, sorry. I mean the title of a collection page, and it’s
description. I actually figured it out though through a process of
elimination. I just found the Collection description section and deleted
stuff until I got right :slightly_smiling_face:

Thank you!

can you share the screenshot ?

Hi, I tried this solution but it didn’t work. Apparently the SCSS files are deprecated and Shopify is suggesting to use CSS files instead. Any advice?

Hello,

Please Share your store live url & screenshot where you want to do modification, so that I will solve your issue here!

https://arta-gallery-ca.myshopify.com/

In the following page you see all the collections with titles. I want to hide the titles.

https://www.artagallery.ca/pages/artists

As per your suggestion, I added the following code and it didn’t work.

h2.SectionHeader__Heading.SectionHeader__Heading--emphasize.Heading.u-h1 {
    display: none;
}

Add this css at the bottom of
Online Store->Theme->Edit code->Assets->theme.scss.liquid

Thank you very much! The code works perfectly.

Hi @oscprofessional

I’ve tried following all the options that have previously worked and am not having any luck. I also can not find theme.scss.liquid in Prestige under assets or any other folder.

I’d ideally like to..

  • move the collection title to the left of the page rather than the middle

  • reduce the white space between the collection listings and the collection title

  • add a shop now link on the right side of the page in line with the collection title

  • widen the layout of the collection listing images / reduce the cushioning on the sides

https://www.bristolgeneralstore.com/

Let me know if you are able to help me with these :slightly_smiling_face:

@ArtaGallery ,

Your welcome.

You can accept the solution I have provided.