How to remove Collection title from Collection Banner [reformation theme]

Topic summary

Goal: Remove the collection title from the collection banner in the Reformation theme while keeping breadcrumbs visible.

What was done:

  • Store URL was shared to diagnose. A CSS fix in assets/app.css was applied to hide the title/content within the banner:
    • Hide selectors: .section-header–content h2 and .section-header–content .rte (display: none !important), which removed the collection title and kept breadcrumbs.
  • Follow-up issue: Excess white space in the collection banner. After confirming the correct draft/page link, a second CSS tweak was added in assets/collection-banner.css:
    • .collection-banner { min-height: 20px !important; } to reduce banner height.

Notes:

  • An earlier suggestion to add code in theme.liquid was provided but no actual code snippet was shared; the working solution used CSS only.
  • Images were shared to illustrate before/after but weren’t required to implement the fixes.

Outcome:

  • Title successfully removed and banner white space minimized.
  • Issue resolved; no outstanding questions.
Summarized with AI on December 20. AI used: gpt-5.

How do i remove the Collection title in page? I need to unhide the collection banner to remains the breadcrumbs.

Hey @SarahHalim

Share your Store URL and Password if enabled.

Best Regards,

Moeed

https://msreadshop.com/

1 Like

Hey @SarahHalim

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


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

Best Regards,
Moeed

Hello @SarahHalim

Go to online store ----> themes ----> actions ----> edit code ---->assets ----> app.css
add this code at the end of the file.

.section-header--content h2, .section-header--content .rte {
display: none !important;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

This resolved my issue! Thanks

1 Like

Thank you for your reply. I’m glad to hear that the solution worked well for you. If you require any more help, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.

Do you know how to minimize the white space?

please provide link of this page

https://msreadshop.com/collections/malaysia-day-bonus

Doesn’t show any white space

sorry was in another theme draft. Can you retry?

provide link

this is the link https://msreadshop.com/collections/malaysia-day-bonus

Thanks

Go to online store ----> themes ----> actions ----> edit code ---->assets ---->collection-banner.css
add this code at the end of the file.

.collection-banner {
min-height: 20px !important;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

very helpful! thanks so much

Thanks
Please hit the like button also.