How can I remove page titles from Debut theme on my pages?

Hi,

Looking for help in removing the Page Title from my Shopify pages. I would prefer to just use an image with text overlay as the header rather than the default pure text header. Currently using the Debut theme! I think I have to change some code but when I do I end up with a weird amount of whitespace! Pretty new to this so any help would be sooo appreciated!!

Hi @michxie

Would you mind sharing your store’s URL so we can provide the solution for that? Thanks!

https://wear-fid.com/

Let me know if you need anything else, thank you!

Please add the following code at the end of your theme.css file:

#MainContent > div.page-width {
    display: none;
}

That should do it for the pages! Should that help answer your query, we always appreciate liking & marking an as answer to let the community find quality solutions faster. Thanks!

1 Like

Hello Michxie ,

I see you store but i think there is no problem yet. Can you please tell me do you feel your problem?

This worked, thank you!

For others I ended up adding the following code to get rid of page titles and the extra white space

.template-page h1 {
display: none;
}
#MainContent > div.page-width {
display: none;
}

to theme.css under the Assets folder!