Hide Block on Mobile Devices

Permalink
Hello!

I'm writing as a complete coding amateur and looking for bit of step by step assistance. I'm hoping to edit a certain block on a page (chasingtailrun.com) so it remains hidden on mobile devices. Any assistance is greatly appreciated!

2 Attachments

 
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
Add this to your css file
@media (min-width:320px) and (orientation:landscape){
.beerrun-body header.side nav {
    display: none;
}
}