Hide "Home" on Static front page

Hi,

I’d really like to hide the page title “Home” on my static homepage. But I’m completely lost on how to do it. This is my website: www.runnersretreat.com. I use the Dazzling theme.

I’m not good at CSS, so the simpler the solution the better. Thank you!

Hi @runnersretreat,

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 your theme on the below path.

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

body.home .navbar.navbar-default .navbar-nav li:first-child{
display: none;
}
.navbar.navbar-default .navbar-nav li:first-child{
display: none;
}

Best Regards,
Movin