Hello! I am trying to hide the collection title on my frontpage, only leaving it with the images of the featured collection. Can someone help please?
Topic summary
A user seeks to hide the collection title on their frontpage while keeping the featured collection images visible in the Beyond theme.
Initial Solutions Attempted:
- First suggestion involved adding CSS code to theme.liquid file, but this approach didn’t work.
Working Solution:
Moeed provided CSS code to hide the collection title by targeting .featured-collection--root .collection-header with display: none !important.
Follow-up Issue:
After successfully hiding the title, excessive spacing remained between the header and featured collection.
Final Fix:
Additional CSS was provided to remove the top padding: .featured-collection--root { padding-top: 0 !important; }
Status: Issue resolved. The user confirmed both solutions worked—the collection title is now hidden and spacing has been corrected. Screenshots were shared showing the before and after results.
Hey @AMP76
Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.
Best Regards,
Moeed
@AMP76 ,
-
Go to Online Store → Theme → Edit code.
-
Open your theme.liquid file
-
Paste the below code before on theme.liquid
Hello, thanks for the support! page is espiritonomade.com password wheush
thanks for the reply
it didn’t work ![]()
Hey @AMP76
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
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Please try this code
.featured-collection--header{
display:none!important;
}
Thank you so much, it worked. But it left a quite big space between the header and the featured collection, can you help me make it smaller please?
Hey @AMP76
Keep the previous code and add this new code above in the end of theme.liquid file.
.featured-collection--root {
padding-top: 0 !important;
}
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed



