Hey just wanted to ask a simple question... I run several blogs and recently started another one. I'm using a different theme then I'm used to and cant seem to figure out how to change it from text to a logo. Here's what the header.php looks like: <!-- begin header --> <div id="header"> <div id="headerlogo"> <h1><a href="<?php echo get_option('home'); ?>/" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a></h1> <span><?php bloginfo('description'); ?></span> </div> <div class="clear"></div> </div> <!-- end --> Code (markup): I have a logo I want to use... All I need is someone to help me point it to an image file and I can do the rest. I'd definitely give rep for anyone that can help me with this. Thanks
Cant you just insert the image tag where the link text is displyed ? Change - <h1><a href="<?php echo get_option('home'); ?>/" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a></h1> PHP: Change to - <h1><a href="<?php echo get_option('home'); ?>/" title="<?php bloginfo('name'); ?>"><img src="www.blog.com/them/images/name.jpg" /></a></h1> PHP: Pm me if you need more help! edit - you may need to amend your css but this should start you off.