I'm sorry to write again! But I really don't know how to solve my problem!!
I'm worked again on it this morning but I just can't find how to make it work.
I try to give you more info..maybe someone can help
Here there is my image map code:
Code:
<area shape="rect" coords="457,75,499,106" href="http://mademoiselleflo.com/shop" alt="shop">
<area shape="rect" coords="500,76,543,106" href="http://mademoiselleflo.com/blog" alt="blog">
<area shape="rect" coords="542,76,583,106" href="http://mademoiselleflo.com/info.html">
<area shape="rect" coords="583,76,639,106" href="http://mademoiselleflo.com/contact.html" alt="Contact">
<area shape="rect" coords="638,76,679,106" href="http://mademoiselleflo.com/press.html" alt="press">
<area shape="rect" coords="679,76,715,107" href="http://mademoiselleflo.com/fun.html" alt="fun">
<area shape="rect" coords="715,75,761,106" href="http://mademoiselleflo.com/links.html" alt="links">
<area shape="circle" coords="56,44,38" href="http://mademoiselleflo.com" alt="index">
What I done is to change on the includes/templates/custom/common/tpl_header.php
this line:
Code:
<?php echo '<a href="' . zen_href_link(FILENAME_DEFAULT) . '">' . zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '</a>'; ?>
with this:
Code:
<?php echo zen_image($template->get_template_dir(HEADER_LOGO_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT, HEADER_LOGO_WIDTH, HEADER_LOGO_HEIGHT, 'name="logo" usemap="#logo"'); ?>
<map name="logo"><?php echo HEADER_LOGO_IMAGEMAP; ?></map>
and then added this code to includes/languages/english/custom/header.php
Code:
define('HEADER_LOGO_IMAGEMAP', '<area shape="rect" coords="406,75,457,105"
href="http://mademoiselleflo.com/about.html" alt="about">
<area shape="rect" coords="457,75,499,106" href="http://mademoiselleflo.com/shop" alt="shop">
<area shape="rect" coords="500,76,543,106" href="http://mademoiselleflo.com/blog" alt="blog">
<area shape="rect" coords="542,76,583,106" href="http://mademoiselleflo.com/info.html">
<area shape="rect" coords="583,76,639,106" href="http://mademoiselleflo.com/contact.html" alt="Contact">
<area shape="rect" coords="638,76,679,106" href="http://mademoiselleflo.com/press.html" alt="press">
<area shape="rect" coords="679,76,715,107" href="http://mademoiselleflo.com/fun.html" alt="fun">
<area shape="rect" coords="715,75,761,106" href="http://mademoiselleflo.com/links.html" alt="links">
<area shape="circle" coords="56,44,38" href="http://mademoiselleflo.com" alt="index">');
I made those changes following something that someone else did in the past year.
Does someone know why it isn't working for me?!
here there is my site: http://mademoiselleflo.com/shop
Thank you again! :)