How do i remove the Collection title in page? I need to unhide the collection banner to remains the breadcrumbs.
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.
Hey @SarahHalim
Follow these Steps:
-
Go to Online Store
-
Edit Code
-
Find theme.liquid file
-
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
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.
please provide link of this page
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.




