Hello
Read a few posts on here regarding a css change for a different logo on a mobile. I have this issue to resolve, due to the clients logo have a long version (large applications) and a short version (smaller applications).
So, I found the following:
@media only screen and (max-width: 980px) {
#logo {
background-color: transparent!important;
background-image: url('http://www.url/image.png') no-repeat!important;
}
#logo img {
display: none!important;
}
But it doesn’t replace the mobile version.
Whats really odd, is that, if I change the (max-width: 980px) to (max-width: 1980px) it shows the mobile version in the main window – but when collapsed, reverts back to the old, large version ! ( i hope that test made sense!)
Any help would be appreciated
Thanks
David