Hi Patrick
Firstly remove the following in your templates styles.php (../templates/j51_vitality/styles.php - line 32)...
/* Hide default hornav menu */
.hornav, #socialmedia {display:none !important;}
/* Show mobile hornav menu */
.slicknav_menu {display:block;}
You can then add the following to the Custom CSS field of your templates parameters where 720px is the new break point (edit to taste)...
@media only screen and (max-width: 720px) {
/* Hide default hornav menu */
.hornav, #socialmedia {display:none !important;}
/* Show mobile hornav menu */
.slicknav_menu {display:block;}
}
Ciarán