Skip to content

Instantly share code, notes, and snippets.

@DeskSupport
Created October 31, 2012 17:11
Show Gist options
  • Save DeskSupport/3988385 to your computer and use it in GitHub Desktop.
Save DeskSupport/3988385 to your computer and use it in GitHub Desktop.
Genesis :: add logo from functions.php
// Add the logo to the header in Genesis
//will need to add css for this
function fws_add_logo() {
?>
<div id="logo">
</div>
<?php
}
add_action('genesis_header', 'fws_add_logo');
/*
//Example: This was a full width logo-header-banner
#logo {
background: url("images/logo-full.png") no-repeat scroll 0 0 transparent;
margin-top: 10px;
min-height: 125px;
width: 1000px;
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment