Created
October 12, 2018 22:41
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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