Remove Blog Title Header

Hello. How do I remove the Blog Title Header?

Hey @HGPower,

The landmark title is inside the header landmark which also houses the breadcrumbs. If you will not be using the breadcrumbs and want to remove the entire area, please add this CSS in Theme Options > CSS.

.x-header-landmark {
    display: none;
}

The landmark title also is dynamic. For example, it displays The Blog as default for the blog and when you’re in a page that is using the default page template, it displays the page title. If you want to target the blog page only, use this CSS

.blog .h-landmark { display: none; }

Thanks.

1 Like

Thank you!