I am trying to put an image map on my website, in the header. I am taking the coding from a tutorial, which shows it as:
<img src="MyMap.gif" alt="Image Map" usemap="#MyImageMap">
<map id="MyImageMap">
<area shape="rect" coords="8,13,130,123"
href="#LINK1" alt="Determining Mapped Areas"/>
</map>
My problem is that I use CSS on my site, and the image for my header is coded as a background in the default.css text file, like this:
.header
{
background: #56644A url(img/XLheader3.gif) no-repeat center;
height: 285px;
}
and on the index.html file as:
<div class="header">
Here is the image http://img.photobucket.com/albums/v1.../XLheader3.gif
I want the LOTRO logo to be a link to their website.
SO........
How do I get the header to have a clickable link on it?


2Likes
LinkBack URL
About LinkBacks
Reply With Quote

