I'm using WP_Premium 1.0 by R.Bhavesh on my website (southerngamer.net) and I wanted to change my Blog Name and Description area to a logo image.
In header.php I changed this code:
<div id="header-in">
<p class="title"><a href="<?php echo get_settings('home'); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a>
<p class="description"><?php bloginfo('description'); ?>
<?php ?>
I replaced the second <?php bloginfo('name'); ?> with <img src="header.jpg" border="0">
Now, on the home page, that displays my logo image in the place of the text, but if I navigate to any other page, it only shows the nav links up in the logo area. How can I get it to display the logo on all pages?
Thanks in advance for any help!