/gist:e69ada372f2bc3695659 Secret
Last active
January 8, 2016 04:11
Star
You must be signed in to star a gist
How to center logo in Metro Pro. https://sridharkatakam.com/how-to-center-logo-in-metro-pro/
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
//* Add support for custom header | |
add_theme_support( 'custom-header', array( | |
'width' => 270, | |
'height' => 80, | |
'header-selector' => '.site-title a', | |
'header-text' => false | |
) ); |
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
//* Add support for custom header | |
add_theme_support( 'custom-header', array( | |
'width' => 350, | |
'height' => 270, | |
'header-selector' => '.site-title a', | |
'header-text' => false | |
) ); | |
// Remove the header right widget area | |
unregister_sidebar( 'header-right' ); |
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
.title-area { | |
float: left; | |
padding: 0; | |
width: 360px; | |
} | |
.site-title { | |
font-family: 'Oswald', sans-serif; | |
font-size: 48px; | |
line-height: 1; | |
margin: 0 0 16px; | |
text-transform: uppercase; | |
} |
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
/* Title Area | |
--------------------------------------------- */ | |
.title-area { | |
/*float: left;*/ | |
margin: 0 auto; | |
padding: 0; | |
width: 360px; | |
} | |
.site-title { | |
font-family: 'Oswald', sans-serif; | |
font-size: 48px; | |
line-height: 1; | |
/*margin: 0 0 16px;*/ | |
margin: 0 0 20px; | |
text-transform: uppercase; | |
} |
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
.header-image .site-title a { | |
background-color: none; | |
max-width: 270px; | |
min-height: 80px; | |
padding: 0; | |
} |
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
.header-image .site-title a { | |
/*background-color: none;*/ | |
background-position: center; | |
max-width: 350px; | |
min-height: 270px; | |
padding: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment