I found (from this question - Hide div if screen is smaller than a certain width) this piece of coding
$(document).ready(function () { if (screen.widt
Media queries for the win
How do I make a div not display, if the browser window is at a certain width?
@media all and (max-width: 1024px) { /* Change Width Here */ div.class_name { display: none; } }