
Originally Posted by
dalem
Hi Nyx1961.
Did you manage to sort this out as it's relatively easy.
You need to edit tpl_header.php which you can find in includes/templates/YOUR_TEMPLATE/common/tpl_header.php
Look for the text below this <!--bof-branding display-->
and edit it accordingly.
Thanks for responding, Dalem. I'm not sure exactly what to add/remove/edit in the code to have my header image link to my site. The code is pasted below. I hope someone wouldn't mind helping me with this, please. I'm a bit lost. 
Code:
<!--bof-branding display-->
<div id="<?php
$page = $_GET['main_page'];
$cPath = $_GET['cPath'];
if ($page == "index" && $cPath < 1 )
{ echo "logoWrapper"; }
else
{ echo "logoWrapper".rand ( 1 , 6 ); }
?>">
<?php if (HEADER_SALES_TEXT != '' || (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2))) { ?>
<div id="taglineWrapper">
<?php
if (HEADER_SALES_TEXT != '') {
?>
<?php
}
?>
<?php
if (SHOW_BANNERS_GROUP_SET2 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET2)) {
if ($banner->RecordCount() > 0) {
?>
<div id="bannerTwo" class="banners"><?php echo zen_display_banner('static', $banner);?></div>
<?php
}
}
?>
</div>
<?php } // no HEADER_SALES_TEXT or SHOW_BANNERS_GROUP_SET2 ?>
<?php if ($_SESSION['customer_id']) { ?>
<div class="my-acct"><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a></div>
<?php } ?>
</div>
<!--eof-branding display-->