Skip to content

Instantly share code, notes, and snippets.

@geeac
Last active March 3, 2017 08:33
Show Gist options
  • Save geeac/4db034cf0c854ead3474d9dd3171cdb2 to your computer and use it in GitHub Desktop.
Save geeac/4db034cf0c854ead3474d9dd3171cdb2 to your computer and use it in GitHub Desktop.
reposition mobile menu in genesis themes
/* Reposition nav-primary on top of page-top */
$( '.page-top' ).before( toggleButtons.menu ); // add the main nav toggle
/* Reposition nav-primary on top of page-top */
$(window).resize(function() {
if ($(window).width() < 1024) {
$('.page-top').before($('.nav-primary'));
}
});
if ($(window).width() < 1024) {
$('.page-top').before($('.nav-primary'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment