Archived topic
is there a way to use css to hide the site logo when the website is not viewed o
3 replies · Started by sdanbu on September 7, 2017
Viewing posts 1–4 of 4
Is there a way to use css to hide the site logo when the website is not viewed on desktop?
I would like my logo to disappear when used on mobile devices in portrait mode.
Hi there,
You can either try the mobile header without uploading a logo:
https://docs.generatepress.com/article/mobile-header/
Or use this CSS:
@media (max-width: 768px) {
.site-logo {
display: none;
}
}
Thank you!
No problem!
This archived topic is closed to new replies.