How to hide both tag page header and category page header at the same time?
-
Hi,
.category header.page-header {
display: none;
}.tag header.page-header {
display: none;
}I knew the above two CSS code can hide either page headers, but I want to hide both of them at the same time. Can anyone help with that? Thank you ~
The blog I need help with is: (visible only to logged in users)
-
You can add both codes to hide both elements.
Or you can combine them with a comma, like this:
.category header.page-header, .tag header.page-header { display: none; }Let me know if this accomplishes what you’re after.
-
-
You’re very welcome. I’ll mark this thread as resolved but feel free to start a new one if you need help with anything else.
- The topic ‘How to hide both tag page header and category page header at the same time?’ is closed to new replies.