Tagged: Hide, logo, mobile version
Hi, I’d like the logo on my website https://www.avvocatoambienteesicurezza.it to be visible only in the mobile version.
I added the code .logo { display: none !important; } to the CSS, but obviously it hides the logo everywhere, even in the desktop version. Can you please help? Thanks, Gianluca.
Would you like to hide only the logo image or both the logo image and navigation?
Would you like to hide it on small screen sizes or exclusively on mobile devices?
Only logo image on small screen size like tablet in vertical mode and mobile devices too
Hi,
Please try this CSS instead:
@media only screen and (max-width: 767px) {
.logo {
display: none !important;
}
}
Best regards,
Rikard
Would it be possibile to have logo visible everywhere (mobile and desktop too) but non in home page in either version?
Sorry, I solved with this .page-id-79 logo { display: none !important; }
