Hi
From this post: https://kriesi.at/support/topic/hide-the-logo-only-on-the-fronthome-page/#post-257289
How can we hide the logo on a home page desktop device but show on home page mobile device.
Appriciate your help, Mark
Hey mawebdesign,
I’m going to assume that the code from the post worked for you, but want to show the logo on mobile only. So please try this:
@media only screen and (min-width: 767px) {
.home .logo { display: none!important; }
}
This will also hide on tablets, let us know if you wish to show on tablets.
Best regards,
Mike
Hey
Thank you for this, Yes we would like to show on tablets? Please advise
All the best
mark
Hi,
Please try:
@media only screen and (min-width: 1023px) {
.home .logo { display: none!important; }
}
Best regards,
Mike
Thanks for your help Mike