Skip to content

Instantly share code, notes, and snippets.

@techmuzz
Created May 22, 2019 00:32
Show Gist options
  • Save techmuzz/261c4e46ef0d49aca660a577f3bbc5d6 to your computer and use it in GitHub Desktop.
Save techmuzz/261c4e46ef0d49aca660a577f3bbc5d6 to your computer and use it in GitHub Desktop.
function logo_with_title() {
$imageUrl = get_stylesheet_directory_uri() . '/images/site_logo.png';
printf( '<a href="%s"><img src="%s" /></a>', trailingslashit( home_url() ), $imageUrl );
}
add_action( 'genesis_site_title', 'logo_with_title', 0 );
.title-area img {
border-radius: 50%;
margin-right: 20px;
}
.site-title {
line-height: 1.8;
font-size: 32px;
font-size: 3.2rem;
font-weight: 400;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment