Can I remove the title line from a page?

I don’t want to see the word “Home” on the top of my home page, but if I delete the title I get “untitled”! Can I remove the title line altogether?

Hi @gretchen,

Use this css code:
.navbar > .container .navbar-brand {
display: none;
}

If it doesn’t work please sent me your website link.

Thanks,

Cristian

That will remove ALL title lines, correct? I was hoping to remove the title from a single page.

hi,

Send me your website to assure

thanks,

Cristian

My site is: http://nhanced-semi.com/

It uses the “dazzling” theme. I want to take “Home” off the home page but leave titles on the other pages.

Can I do that?

Hi @gretchen,

Unfortunately is not possible, I just check. If you choos to remove it will remove the title from all the pages

Thanks,

Cristian

Well, I was afraid of that. Thanks for checking!

You’re welcome, we will put this as an improvement for future updates.

thanks,

Cristian

@gretchen 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 #main .page-header {
display: none;
}