How can I effectively remove page titles from my online store?

I’m trying to remove page titles and suggestions from other posts aren’t working for me. My shop is: https://alohalovelyshop.com/

thanks!

@julieestrella ,

Are you asking about this page title.

Trying to get rid of titles, like the one in the yellow circle.

@julieestrella ,

Please share the store URL.

https://alohalovelyshop.com/

@julieestrella ,

h1.collection-hero__title {
    display: none;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid

Thank you!! That worked for some of the pages, is there any way to get the title off these pages as well? Specifically, the ones linked below.

https://alohalovelyshop.com/pages/about

https://alohalovelyshop.com/pages/sign-up

@julieestrella ,

h1.main-page-title.page-title.h0 {
    display: none;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid

2 Likes

Yes!! Thank you so much, it worked!

@julieestrella ,

Your most welcome.