Archived topic
How to remove featured image per category?
3 replies · Started by Sven on February 1, 2016
Hi Tom,
let's say I have a category "video" and I add featured images to posts of that category. How do I hide the image in each post of that category itself?
I assume, I have to customize
.page-header-image-single {
display: none;
}
in a certain way...?
I appreciate your answer!
Best regards,
Sven
Hi Sven,
If you want to hide the image inside the full post within a category, you'll have to do something like this: https://generatepress.com/forums/topic/change-header-background-for-category-or-pages/#post-108374
That whole topic should be helpful.
Let me know :)
Got it:
/* hide featured image of category VIDEO */
.category-video .page-header-image-single {
display: none;
}
:-)
Awesome :)
