depends on some details:
what is the size of the logo, and where do you want to place it?
– on the left of the title?
– instead of the header image?
– as part of the header image?
– clickable?
Hello alchymyth,
I am looking the replace the text logo (blog title) with an image, preferably clickable,
Adding an image on the left of the title is an option, i hadn’t thought of that.
Thanks in advance for any help.
Sorry i left this out,
The image is 320 px Long x 30 px High.
Yea, i did find a solution.
Added to header.php
” title=”<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>” rel=”home”><?php bloginfo( ‘name’ ); ?>
to
” title=”<?php echo esc_attr( get_bloginfo( ‘name’, ‘display’ ) ); ?>” rel=”home”><?php bloginfo( ‘name’ ); ?><img src=”<?php bloginfo(‘template_url’); ?>/images/nameofimage.jpg” alt=”Logo” />
Changed css
/* This is the custom header image */
#branding img {
clear: both;
border-top: 0px solid #000; – from 2 to 0px
display: block;
border-bottom: 0px solid #000; – from 1 to 0px
#site-title a {
color: #fff; – changed to white to blend into background.
font-weight: bold;
text-decoration: none;
}