Hi,
I've been happily using Primepress for many years now without a problem. Recently, however, (maybe due to an upgrade) I lost all my rotating header images and the logo image I was using instead of the blog title. The code in the header.php file that replaced the blog title with the logo also reverted to the original. Replacing the header images and the logo image was not a problem. However, when I replaced the default "Branding" code with the custom code I had been using, nothing happened. I'm still seeing he blog title and not the logo image.
Here's the relevant code from the header.php file:
<div id="branding">
<?php if (is_home()) { ?>
<h1 class="homelink"><img class="alignleft" src="/images/saghampton-logo-white.gif" width="130" height="82" />" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></h1>
<?php } else { ?>
<div class="homelink"><img class="alignleft" src="/images/saghampton-logo-white.gif" width="130" height="82" />" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></div>
<?php } ?>
<p class="description"><?php bloginfo('description'); ?></p>
</div>
What do I have to do to correct this?