Skip to content

Instantly share code, notes, and snippets.

@cesgarma
Created October 12, 2018 22:41
Show Gist options
  • Save cesgarma/8e19d180a0d416341c41b9a93aeb0e7b to your computer and use it in GitHub Desktop.
Save cesgarma/8e19d180a0d416341c41b9a93aeb0e7b to your computer and use it in GitHub Desktop.
Enlarge the Logo on top of secondary menu and even below to the content.
/* Resizing Logo and modifying z-index to be rendered on top of everything else */
#top-header {z-index: 99999;}
@media only screen and (max-width: 980px) {
#logo {
min-height: 100px;
}
}
@media only screen and (min-width: 981px) {
#logo {
min-height: 120px;
margin-top: -52px;
z-index: 100000;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment