Archived topic
Need to hide my site logo on all pages except Home. (only in mobile.)
3 replies · Started by Pablo on July 22, 2019
Viewing posts 1–4 of 4
Hi! I need some help with hiding the logo of my site on all pages except the home page. I want this to be only on mobile, but if this is not possible, I would like to do it anyway.
Hi there,
This CSS should work:
@media (max-width: 768px) {
body:not(.home) .site-logo {
display: none;
}
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps :)
Thanks leo!
No problem :)
This archived topic is closed to new replies.