Zen Follower
- Join Date:
- Jun 2014
- Location:
- hamilton, ohio
- Posts:
- 100
- Plugin Contributions:
- 0
How to replace logo on tablets/mobile on responsive template...
Hello. I want to replace my websites logo with a different image on tablets/mobile. I can figure out how to hide it using this code:
@media (max-width: 730px) {
#logo {display: none;}
}
I am just wondering what I could do to replace the logo with a different image around that same pixel width. I have tried this no to no avail:
@media (max-width: 730px) {
#logo {background-image: url("image url");}
}