How can I remove page titles on the Venture theme?

I want to remove the page titles on all the pages. Can someone help me remove the page titles (see image below)? https://laface-skin-care.myshopify.com/?_ab=0&_fd=0&_sc=1&key=a2a35434a549b03ad233264794405b77106e714c7d9528442a82aae4c696697d

Any help is appreciated!

1 Like

@JS777

Please add the following code at the bottom of your assets/theme.scss.liquid file.

.template-page .h1 { display: none !important;}

Thanks!

Hi @JS777 ,

Please this code in theme.css file:

h1.small--text-center {
    display: none;
}

Thanks

Thanks for your help! I just added this code and the page name is still there. Any suggestions?

1 Like

@JS777
Add this code to theme.scss or theme.css

@media only screen and (min-width: 750px){
.h1, .h1--mini, h1 {
    font-size: 2.25em;
    display: none !important;
}
}

Thank you.

Try this:

h1.small--text-center {
    display: none !important;
}