I'm using category buttons to separate articles vs. blog posts but can't get rid of the titles on the page

Hello,

I’ve implemented category buttons in my main menu on https://gregoryshepard.com/

If you click on the articles button or the blog button it has a large title that says (on the blog page)

Category Archive
Below you’ll find a list of all posts that have been categorized as “Blog”

I am trying to eliminate this and add a paragraph of text in that area. I have tried to implement this in the global css, but it is not eliminating the titles.

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

And how would I add a paragraph in that space?

Hello @Stawarz,

Thanks for asking. :slight_smile:

If you want to remove the title, please add following CSS under X > Theme Options > CSS:

.category .h-landmark {
    display: none !important;
}  

You can add descriptions or paragraph to categories from Posts > Categories > Edit (edit a category) > Archive Subtitle. Here is a screencast that I have recorded for you to get started. https://cl.ly/2R0l3A3q0B1f

Thanks.

Thank you that worked for the title, but the sub title is still there. As you can see on the articles page, it still is displaying: “Below you’ll find a list of all posts that have been categorized as “Articles””

Hello @Stawarz,

I am really sorry. Mistakenly I pressed the submit button without typing the complete answer. I have updated my previous reply.

Kindly let us know how it goes.

Thanks.

Yes, this is working, Thank you very much!

You are most welcome. :smiley:

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