I want to replace the logo in the header of a website when it is is viewed on a mobile screen (screen width less than 500px). So I wrote the following CSS
@media only screen and (max-width: 500px) {.logo img{ content:url("....."); }}
It's working fine on chrome but not on firefox.
Can someone help me, please?