Hide my title and description on a specific page.

How do I hide my title and description on a specific page?

Nucleus provides you with the option to hide your page titles and descriptions site-wide, but not with the option to hide them on a page level. If you'd like to hide your page title and description on a specific page, it's easy. Just choose which outcome you'd like below and add the corresponding code to the "Custom CSS" section of your page.


Just hide the title:

.pages-intro h1 {
	opacity: 0;
	height: 0;
	pointer-events: none;
}

Just hide the description:

.pages-intro p {
	opacity: 0;
	height: 0;
	pointer-events: none;
}

Hide both the title and description:

.pages-intro {
	position: absolute;
	top: -9999px;
	left: -9999px;
}