Archived topic
Disable the display of the company logo on the main page on the desktop
4 replies · Started by Dmytro on May 1, 2020
Good afternoon! On Monday, the launch of the site and your help are urgently needed. It is necessary to disable the display of the company logo on the main page of the site on the computer and on the tablet (it must remain on the mobile phone). Merch theme
Hi there,
Try this CSS:
body.home .site-logo {
display: none;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Good afternoon! Disabled on all devices, but I need a logo to display on mobile phones.
@media screen and (min-width: 768px) {
body.home .site-logo {
display: none;
}
}
it seems to be good
Yup that's the right CSS :)