In the members-only forum a user asks:
Using Metro Pro for the first time and I’ve got everything looking great apart from the header. I need to replace the default 270×80 logo with a logo that’s 350×270 and placed centrally. I don’t need the widget area.
Can you help please?
thanks very much
We can change the custom header dimensions and unregister header right widget area in Metro Pro's functions.php followed by customizing style.css to reflect the updated logo size and centering it.
Step 1
Edit functions.php.
Replace
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 | |
) ); |
with
To view the full content, please sign up for the membership.
Already a member? Log in below or here.