scarlett0512 Posted June 29, 2007 Posted June 29, 2007 My header is made of an image map. Although the links display correctly and are clickable in IE, the links aren't clickable in Firefox. Otherwise, everything looks fine. Here's how the image map is formatted: <!-- ImageReady Slices (header9.psd) --> <MAP NAME="header_Map"> <AREA SHAPE="rect" ALT="sale items" COORDS="480,5,519,20" <?php echo '<a href="' . tep_href_link(FILENAME_SPECIALS) . '">' . '</a>'; ?>> <AREA SHAPE="rect" ALT="parties" COORDS="415,5,475,20" <?php echo '<a href="' . tep_href_link(FILENAME_PARTIES) . '">' . '</a>'; ?>> <AREA SHAPE="rect" ALT="create-a-sections" COORDS="275,5,405,20" <?php echo '<a href="' . tep_href_link(FILENAME_CREATE_SECTIONS) . '">' . '</a>'; ?>> <AREA SHAPE="rect" ALT="accessories" COORDS="175,5,270,20" <?php echo '<a href="' . tep_href_link(FILENAME_ACCESSORIES) . '">' . '</a>'; ?>> <AREA SHAPE="rect" ALT="tees" COORDS="125,5,170,19" <?php echo '<a href="' . tep_href_link(FILENAME_TEES) . '">' . '</a>'; ?>> <AREA SHAPE="rect" ALT="jewelry" COORDS="55,5,120,20" <?php echo '<a href="' . tep_href_link(FILENAME_JEWELRY) . '">' . '</a>'; ?>> <AREA SHAPE="rect" ALT="handbags" COORDS="5,5,50,20" <?php echo '<a href="' . tep_href_link(FILENAME_BAGS) . '">' . '</a>'; ?>> </MAP> <IMG SRC="images/header.gif" WIDTH=520 HEIGHT=24 BORDER=0 ALT="" USEMAP="#header_Map"> <!-- End ImageReady Slices --> Could anyone give me some tips on why this would be happening? This is not a live shop...
Guest Posted June 29, 2007 Posted June 29, 2007 My header is made of an image map. Although the links display correctly and are clickable in IE, the links aren't clickable in Firefox. Otherwise, everything looks fine. Here's how the image map is formatted: <!-- ImageReady Slices (header9.psd) --> <MAP NAME="header_Map"> <AREA SHAPE="rect" ALT="sale items" COORDS="480,5,519,20" <?php echo '<a href="' . tep_href_link(FILENAME_SPECIALS) . '">' . '</a>'; ?>> <AREA SHAPE="rect" ALT="parties" COORDS="415,5,475,20" <?php echo '<a href="' . tep_href_link(FILENAME_PARTIES) . '">' . '</a>'; ?>> <AREA SHAPE="rect" ALT="create-a-sections" COORDS="275,5,405,20" <?php echo '<a href="' . tep_href_link(FILENAME_CREATE_SECTIONS) . '">' . '</a>'; ?>> <AREA SHAPE="rect" ALT="accessories" COORDS="175,5,270,20" <?php echo '<a href="' . tep_href_link(FILENAME_ACCESSORIES) . '">' . '</a>'; ?>> <AREA SHAPE="rect" ALT="tees" COORDS="125,5,170,19" <?php echo '<a href="' . tep_href_link(FILENAME_TEES) . '">' . '</a>'; ?>> <AREA SHAPE="rect" ALT="jewelry" COORDS="55,5,120,20" <?php echo '<a href="' . tep_href_link(FILENAME_JEWELRY) . '">' . '</a>'; ?>> <AREA SHAPE="rect" ALT="handbags" COORDS="5,5,50,20" <?php echo '<a href="' . tep_href_link(FILENAME_BAGS) . '">' . '</a>'; ?>> </MAP> <IMG SRC="images/header.gif" WIDTH=520 HEIGHT=24 BORDER=0 ALT="" USEMAP="#header_Map"> <!-- End ImageReady Slices --> Could anyone give me some tips on why this would be happening? This is not a live shop... Where are your closing tags for the Area Shape? There should be a /> or </Area> at the end of your '</a>; ?>>. That might be your problem.
scarlett0512 Posted June 30, 2007 Author Posted June 30, 2007 I tried your suggestion, Beau. No change...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.