Remove the title from category pages

Hello there.
Is it possible to remove the title from the category and tag pages?
like in this example
YUCATAN

Hello Isabela,

Thank you for the details.

To hide the category and archive titles, you can add this custom css:

.category .x-header-landmark.x-container.max.width .h-landmark,
.archive .x-header-landmark.x-container.max.width .h-landmark{
    display: none;
}

Please let us know if this works out for you.

Amazing
thanks
for the tag I would write another code like this?

.tag .x-header-landmark.x-container.max.width .h-landmark,
.archive .x-header-landmark.x-container.max.width .h-landmark{
display: none;
}

thanks for your help
cheers

You’re most welcome, and yes, you can do that or let’s combine them

.category .x-header-landmark.x-container.max.width .h-landmark,
.tag .x-header-landmark.x-container.max.width .h-landmark,
.archive .x-header-landmark.x-container.max.width .h-landmark{
display: none;
}

Hope this helps.

1 Like

great thanks a lot

You’re welcome!

1 Like

Hi there.
it’s still appearing if I use the layout with sidebar.
Can we also eliminate the title from there?

thanks a lot

Hello Isabela,

Thanks for updating the thread.

Please add following CSS under X > Theme Options > CSS:

.x-content-sidebar-active header.entry-header {
    display: none;
}

Thanks.

1 Like

hello there
it didn’t work :frowning:

Actually I found out that it removed the title from the posts :frowning: instead

Hello Isabela,

Instead of adding a code, please try to disable the page title through the option available when you edit the page in the Wordpress admin that is under Page Settings:

Hope this helps.

:roll_eyes:
my apologies. I didn’t see that. :sob:

thanks for your help
cheers
Isabella

Glad we were able to help :slight_smile:

1 Like

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