Skip to content

Instantly share code, notes, and snippets.

@nielslange
Last active March 28, 2019 04:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nielslange/f8ab2e66838deb0acefd27f3ce3ff895 to your computer and use it in GitHub Desktop.
Save nielslange/f8ab2e66838deb0acefd27f3ce3ff895 to your computer and use it in GitHub Desktop.
/* Position menu above site title */
#masthead {
display: flex;
flex-direction: column;
}
#masthead .site-branding {
order: 2;
}
#masthead .main-navigation {
order: 1;
}
/* Position menu above site title on mobile view */
@media screen and (max-width:991px) {
#masthead {
display: flex;
flex-direction: column;
}
#masthead .site-branding {
order: 2;
}
#masthead .main-navigation {
order: 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment