Last active
August 9, 2018 12:10
-
-
Save paullacey78/eea552134198fb98c74fc09660aef762 to your computer and use it in GitHub Desktop.
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
/* # GENERATEPRESS HEADER # */ | |
/* GeneratePress header fix for phablets & small tablets | |
Change the 1024px value in two places to where you have nav/logo overlap */ | |
@media(min-width: 841px) { | |
.inside-header { | |
display: flex; | |
align-items: center; | |
} | |
.site-logo { | |
width: 20%; | |
} | |
.site-logo:not(.sticky-logo) img { | |
width: 140px; | |
} | |
.nav-float-right .inside-header .main-navigation { | |
width: 80%; | |
} | |
#menu-main-nav { | |
display: flex; | |
justify-content: flex-end; | |
} | |
#sticky-navigation { | |
padding: 10px; | |
} | |
} | |
@media (min-width:768px) AND (max-width:840px) { | |
.inside-header { | |
display: flex; | |
flex-flow: row wrap; | |
justify-content: center; | |
padding: 20px 0 0 0; | |
} | |
.site-logo img { | |
width: 140px; | |
} | |
#site-navigation { | |
min-width: 768px; | |
padding: 10px; | |
text-align: center; | |
} | |
#site-navigation ul li { | |
display: inline-block; | |
float: none; | |
} | |
} | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment