Pearl: Hide logo/masthead on mobile devices
Some users may wish to hide their logo/masthead on mobile devices only. This simple Code Hack will allow you to do this!
Here's an example of this Code Hack in action:
And here's the code you need to implement it:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Add this code under Customize > Additional CSS. | |
*/ | |
@media screen and (max-width: 750px) { | |
#masthead { | |
display:none; | |
} | |
} |