Last active
May 15, 2018 18:09
-
-
Save mjsdiaz/e33c7e71b9397554cea26dcedec356ef to your computer and use it in GitHub Desktop.
Center Logo and Menu in Genesis 2.6 - https://amethystwebsitedesign.com/center-logo-and-menu-in-genesis-sample-2-6/
This file contains 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
/* Center logo and menu on only large screens. */ | |
@media only screen and (min-width: 960px) { | |
.wp-custom-logo .title-area, | |
.wp-custom-logo .nav-primary { | |
float: none; | |
} | |
.wp-custom-logo .title-area { | |
margin: 0 auto; | |
text-align: center; | |
} | |
.wp-custom-logo .nav-primary { | |
text-align: center; | |
} | |
.wp-custom-logo .nav-primary .sub-menu { | |
text-align: left; | |
} | |
} |
This file contains 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
/* Center logo and menu on large and small screens. */ | |
.wp-custom-logo .title-area, | |
.wp-custom-logo .menu-toggle, | |
.wp-custom-logo .nav-primary { | |
float: none; | |
} | |
.wp-custom-logo .title-area { | |
margin: 0 auto; | |
text-align: center; | |
} | |
@media only screen and (min-width: 960px) { | |
.wp-custom-logo .nav-primary { | |
text-align: center; | |
} | |
.wp-custom-logo .nav-primary .sub-menu { | |
text-align: left; | |
} | |
} |
This file contains 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
/* No fixed header. */ | |
.site-header { | |
position: static; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment