Remove Category title from a Category page

Hello everyone,

I am just trying to remove the category title into a category page. I rode some CSS codes to put into my CSS file like:

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

but it doesn’t work.

website is: www.motoclubchimax.com
The title i need to remove is on “Eventi” page. I tried to remove all descriptions into “category options”, but automatically it gives me a title and I don’t want it.
Can you help me?

Thanks so much

Hello @Ryderrr,

Thanks for asking. :slight_smile:

I see an under-construction page active on your website. Please try out following CSS under X > Theme Options > CSS to remove category title:

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

Let us know how it goes.

Thanks.

Ohhhh true I have under construction plugin, so sorry! :stuck_out_tongue:
Anyway it works! thank you so much @Prasant !!
…but now, I have the same problem with the subtitle, who remains… can we do the same for it?

Thanks again!

1 Like

Hi again,

You can replace the previous code with this one:

.archive.category .x-header-landmark {
    display: none !important;
}

Cheers!

1 Like

Wonderful!

Thank you so much!

Just to understand… can you simply tell me what have I done with this code? For example: If I have to put another category page, title and subtitle will appear or not?
I am just asking because I want to understand and learn :smiley:

Hello @Ryderrr,

Thanks for updating the thread. :slight_smile:

Basically what we are trying to do is on every category page using .archive.category CSS selector, we are hiding the content that inside .x-header-landmark selector using CSS display none property. Above code will hide title from each and every category page.

In case you want to learn more about CSS and some of the properties we used in above code, please refer following source:

https://www.w3schools.com/cssref/css_selectors.asp
https://www.w3schools.com/css/css_display_visibility.asp
https://www.w3schools.com/css/default.asp

Thanks.

Great! Thanks for links you posted! :smiley:

You are most welcome. :slight_smile:

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