Need help with category header
-
I am new to CSS and am having problems with the header on my posts. I want all my work to be categorized, but I don’t want there to be a category header above all posts.
How do I remove it? I have used the chrome element inspector to find the code and have tried to edit it in the customizer several times. My guess would be I am just not using the right code?The blog I need help with is: (visible only to logged in users)
-
Hi Kwen,
Want a bit clarification, do you want the entire header (including header image) gone from the category pages, for example, this one?
If so, try this code:
.category #header { display: none; }If you only want the category heading, e.g, “Musings” gone, give a try to this:
.category .entry-title span { display: none; } -
It was the second one, the category heading only. Thank you so much! Hopefully, after some study I can get the hang of this CSS thing! Thanks ehtis for the quick reply and quick fix.
- The topic ‘Need help with category header’ is closed to new replies.