How to Disable Blog Title on Knowledge Base Article Pages

Is there any way to get rid of the Blog title on the Knowledge base article pages? I have a separate blog and knowledge base. The blog title shouldn’t show up on the knowledge base article pages.

An example page is https://allincorporated.ca/knowledge-base/about-officers/

Thanks!

Hi there,

Please try this code in the Global CSS:

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

Hope this helps.

That worked. Thanks!

Is there a way to make the title of the knowledge base article line up with the article itself? Currently it’s left aligned with the menu.

Hi There,

Please add this to Theme Options > CSS as well.


@media (min-width: 682px) {
	.single-epkb_post_type_1 h1.entry-title {
	max-width: 71%;
    margin-left: auto;
    padding-left: 2%;
	}
}

Cheers!

That worked to. Is it possible to remove the knowledge base article title altogether without leaving a large space?

Yes, please add this custom CSS instead.

.single-epkb_post_type_1 .x-container.offset {
	margin-top: 0;
}

.single-epkb_post_type_1 .entry-header {
	display: none;
}

To learn more custom CSS, you can inspect your site using Chrome’s developer tools to see the styling that is applied to an element and then using custom CSS to override it. You can find more info on how to check for CSS selectors here. Then information about writing your custom CSS here.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.