With Header and Footer Scripts it is working, but unfortunately when you click on sticky logo main logo comes up..
but I found a simple way, how to get different logo on small screen:
1) create a blank, transparent png logo and upload it to ,,Site title/tagline/logo,,
2) main logo: go to Custom CSS and add:
.site-logo {
background-image: url('https://YOUR MAIN LOGO URL') !important;
background-size:cover;
}
3) 2nd logo for small screen add:
@media only screen and (max-width: 1024px) {
.site-logo {
background-image: url('https://YOUR STICKY LOGO URL') !important;
background-size:cover;
}
}
– Tested, working on Mozilla, Chrome, Safari.
-
This reply was modified 7 years, 10 months ago by Mark Aqa.
-
This reply was modified 7 years, 10 months ago by Mark Aqa.
-
This reply was modified 7 years, 10 months ago by Mark Aqa.