Solved

Remove Page Titles on Venture theme

JS777
Excursionist
42 0 20

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=a2a35434a549b03ad233264794405b77106e71...

Any help is appreciated!

Screen Shot 2021-08-02 at 7.57.35 AM.png

Accepted Solution (1)

pawan987
Explorer
38 8 5

This is an accepted solution.

Hi @JS777,

Please this code in theme.css file:

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

Thanks

View solution in original post

Replies 5 (5)

dmwwebartisan
Shopify Partner
12289 2547 3698

@JS777 

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

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

Thanks!

If helpful then please Like and Accept Solution | Email: dmw.webartisan@gmail.com |  Instagram: @dmw.webartisan
Check here PageFly App to customize your pages | #1 Product Filter & Search app on Shopify | The most powerful Shopify page builder app
JS777
Excursionist
42 0 20

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

Zworthkey
Shopify Partner
5581 642 1567

@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.

pawan987
Explorer
38 8 5

Try this:

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

pawan987
Explorer
38 8 5

This is an accepted solution.

Hi @JS777,

Please this code in theme.css file:

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

Thanks