Hide Page title on the start page

Hey there,
is it possible to hide the page title on the frontpage? What am I going to reach it?
Thanks for your support.

Hi @rainbowcountry,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS

body.home h1.entry-title {
    display: none;
}

Best Regards,
Movin

HI Movin,

thanks a lot. I’ve tried, but it’s not working. At the moment the page I am preparing is hidden by password so I cannot show you.

Best Regards

Nina

The shared code is working fine on my test site.

Could you please share me your home page screenshot where you want to hide the page title so that i can troubleshoot it?

Right now it it working, but now I have a free white space on the place where the title was before…

To remove that space also use the below custom CSS code.

body.home .post-inner-content:first-child{
    padding-top: 0;
}

Great, thank you so much!

You are most welcome here :slight_smile: