Opps!! You have made it one complete image and this image is being used/pointed to as logo.gif even though you have renamed it - you must have also changed this in the file to be topper_2.gif and as such this complete image is hot linked by default to the cart main page.
I suggest that you seperate the mother and daughter image into an image and use it as your logo (maybe set files back to logo.gif and name it logo.gif) Then the remainder can be your header_bg.xxx and applied in the stylesheet.css- probably to the logoWrapper tag kinda like:
Code:
#logoWrapper{
background-image: url(../images/header_bg.jpg);
background-repeat: no-repeat;
background-color: #ffffff;
height: ??px;
}
Then the map does go in a copy of the tpl_header.php placed in your template/common folder(create it if you need to) and basic map code will be along the lines of(you need to adjust it to match your image):
Code:
<div id="tagline"><?php echo HEADER_SALES_TEXT;?></div>
<?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 ?>
<!-- begin navTabs navigation -->
<div id="navTabs">
<a href="index.php"><img src="includes/templates/your_template/images/spacer.gif" alt="Home Page" width="125" height="44" border="0" /></a>
<a href="index.php?main_page=login"><img src="includes/templates/your_template/images/spacer.gif" alt="My Account" width="125" height="44" border="0" /></a>
<a href="index.php?main_page=logoff"><img src="includes/templates/your_template/images/spacer.gif" alt="Log Out of My Account" width="125" height="44" border="0" /></a>
<a href="index.php?main_page=shopping_cart"><img src="includes/templates/your_template/images/spacer.gif" alt="Shopping Cart" width="125" height="44" border="0" /></a>
<a href="index.php?main_page=checkout_shipping"><img src="includes/templates/your_template/images/spacer.gif" alt="Checkout Now" width="125" height="44" border="0" /></a>
<!-- end navTabs --></div>
</div>
<br class="clearBoth" />
<!--eof-branding display-->
use the code in red and insert it between the code in blue - you can add additional lines or remove some to match the number of links that you have and change the href's to yours (maybe ezpage links) and you will need to create these pages first so that you know the links address.
Spacer.gif is a single pixel transparent image and one in images - pixel_trans.gif can be copied and renamed for this.
I enclosed this in a div named navTabs and you could use another name but make sure that it is unique. Then you can refine alignment in the stylesheet.css file.