I am currently working with the default wordpress theme and trying to figure out how to hyperlink the header image so I can use my own customized version of the header image (without the blog name text). The header image is kubrickheader.jpg. (In the default wordpress theme) Does anyone know how to do this and if so, what do I need to change/add? Could you provide the code? Thanks in advance!
Open wordpressdir/wp-content/themes/default/header.php and search for <div id="header"> <div id="headerimg"> <h1><a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></h1> <div class="description"><?php bloginfo('description'); ?></div> </div> </div> Code (markup): The title is the link inside the h1 tags. Change this part of the above <h1><a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></h1> Code (markup): to <a href="<?php echo get_settings('home'); ?>/"><img src="your image path"></a> Code (markup): and if you don't want the description then remove this line completely <div class="description"><?php bloginfo('description'); ?></div> Code (markup):