The Genesis theme usually places the header image to the left side of the page. You can center it with a quick snippet of CSS.
Center your theme logo header image by putting this CSS in your child theme’s style.css file:
/** Center the header image */
#header {
background-position: top center;
}If you want to place the CSS in the Genesis settings panel go to Genesis > Theme Settings and add the CSS in the box below where the text Enter scripts or code you would like output to wp_head():
You would add the CSS like so:
<style type="text/css">
/** Center the header image */
#header {
background-position: top center;
}
</style>Put the CSS in either the style.css file or the theme settings but not in both.









