Archived topic
Hide Header 'Logo' from desktop, but still appear on mobile.
5 replies · Started by Ray on April 1, 2018
I have replaced my entire GP header (w/logo) using Elementor and for most part, all pages now show the Elementor header correctly. However, when I access a category (from a post) the logo reappears. Is there another way I can hide the logo from categories and tag pages without deleting the logo from the customizer > site identity?
Thank you much!

Hi there,
This CSS should hide the logo on all pages on desktop only:
@media (min-width:769px) {
.site-logo {
display: none;
}
}
Let me know if this helps.
Thank you so much, Leo!
No problem!
how do you do the same thing for mobile?
To hide the logo on mobile only?
It would be this CSS:
@media (max-width: 768px) {
.site-logo {
display: none;
}
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
More info here: https://docs.generatepress.com/article/responsive-display/
If you need more help, please open a new topic.
Thanks!