Hello,

I am trying to add an image map to my Zen Cart like I have on my business website. I tried following this thread http://www.zen-cart.com/forum/showthread.php?t=80885 and added
PHP Code:
<div id="logoWrapper"> 
 <div id="logo">
<?php include('includes/html_includes/imagemap.html'); ?>    
<?php echo '<a href="' HTTP_SERVER DIR_WS_CATALOG '" usemap="exact_map"></a>' ?>
 </div>
to my tpl_header override file. But, the links are not working.
My HTML file is just
HTML Code:
<map name="exact_map"> 
 <area shape="rect" coords="13,27,363,119" href="www.myexact.com/dir" />
 <area shape="rect" coords="584,0,658,18" href="www.myexact.com/contact.htm" />
 <area shape="rect" coords="488,0,570,18" href="www.myexact.com/exactpoints.htm" />
 <area shape="rect" coords="411,0,472,18" href="www.myexact.com/inventory.html" />
 <area shape="rect" coords="337,0,396,18" href="www.myexact.com/products.htm" />
 <area shape="rect" coords="264,0,321,18" href="www.myexact.com/services.htm" />
 <area shape="rect" coords="207,0,249,18" href="www.myexact.com/home.htm" />
</map>