There is 2 Breadcrumbs showing on collection page. How i can remove one from specific collection?

Topic summary

A user encountered duplicate breadcrumbs appearing on a specific Shopify collection page and wanted to remove one while keeping breadcrumbs on other collections.

Initial Solutions Offered:

  • Multiple contributors suggested CSS code to hide breadcrumbs by adding display:none rules to theme.css or base.css files
  • Early solutions removed breadcrumbs from all collection pages, not just the specific one

Resolution:

  • After the user clarified they wanted to target only the “deal-town-collection” (ID: 282600208435), a targeted CSS solution was provided
  • The final code used a specific selector: #HeaderCollectionSection-template--19028004307210__banner breadcrumb-component with display:none
  • The user initially reported this didn’t work, but after verification with screenshots, confirmed the issue was resolved

Key Takeaway: The solution required targeting the specific collection’s header section ID rather than applying a global breadcrumb hide rule.

Summarized with AI on November 3. AI used: claude-sonnet-4-5-20250929.

There is 2 Breadcrumbs showing on collection page. How i can remove one from specific collection?

https://www.tridentproducts.co.uk/collections/deal-town-collection

1 Like

Hi @hamzaabbas

What breadcrumb do you want to remove? above Categories or below logo?

Hey @hamzaabbas

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

Hi @hamzaabbas

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.css / based.css file and paste the code in the bottom of the file.
breadcrumb-component.breadcrumb-container.style--line_clamp_1.scroll-trigger.animate--slide-in {
    display: none;
}

If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!

Above Categories

@hamzaabbas

If my reply is helpful, kindly click like and mark it as an accepted solution.

If you are happy with my help, you can help me buy a COFFEE

Thanks!

It removed the breadcrumb from all collections, i want to remove on specific collections.

It removed the breadcrumb from all collections, i want to remove on specific collections.

@hamzaabbas

So, tell me the name of that specific collection.

Here is the collection https://www.tridentproducts.co.uk/collections/deal-town-collection

id is 534802006282

@hamzaabbas Try this code

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.css / based.css file and paste the code in the bottom of the file.
#HeaderCollectionSection-template--19028004307210__banner breadcrumb-component.breadcrumb-container.style--line_clamp_1.scroll-trigger.animate--slide-in {
    display: none;
}

If my reply is helpful, kindly click like and mark it as an accepted solution.

If you are happy with my help, you can help me buy a COFFEE

Thanks!

It’s not working.

Bro, it’s working now. Check the screenshot and mark the solution as resolved.