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:

/*
Add this code under Customize > Additional CSS.
*/
@media screen and (max-width: 750px) {
#masthead {
display:none;
}
}
view raw style.css hosted with ❤ by GitHub