I'm using this to disable the mobile menu on an ipad.
It works, but how do I center menu on the page and move it up about 10px?
@media only screen and (max-width: 1024px) {
#hornav {display:inline !important;}
.slicknav_menu {display:none;}
}
@media only screen and (max-width: 959px) {
/* Hide default hornav menu */
#hornav {display:none !important;}
/* Show mobile hornav menu */
.slicknav_menu {display:block;}
}