How to remove collection title from one collection - Atlantic Theme

Hi, I’ve created a subcollection and put up a slideshow banner at the top. Below it, the Collection title remains. How do I remove the title “THE HOLIDAY SHOP” from under the banner/slideshow? I’m using the Atlantic theme. Page linked below.

https://hopsongrace.com/collections/the-holiday-shop

I hope you can help! Thank you so much in advance.

Hi there,

You can achieve that through custom CSS. Adding the below code at the end of your theme.css file should answer your question.

.template-collection header.collection-title-header {
  display: none;
}

Regards,

Gabriel

@reblev

oh sorry for that issue can you try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/base.css ->paste below code at the bottom of the file.
.collection-title-header, section.home-section.featured-text-container.content-area.has-border {
    display: none !important;
}