This is the area with the image in it. <style type="text/css"> .left { position: absolute; left: 0; width: 180px; height: 338px; background-image: url(/pictures/menu2.gif); </style> I created the map (coordinates and all) and named it map1. I tried doing this : .left { position: absolute; left: 0; width: 180px; height: 338px; background-image: url(/pictures/menu2.gif USEMAP="#map1"); but that didn't work.... any ideas?
I don't think you can make a background image an image map. I believe it has to be an actual <img> tag on the page.
Image map using CSS and XHTML: frankmanno.com/ideas/css-imagemap/ (Sorry, can't link tag for another 3-4 days ) - P
Awesome, thanks for the link. I wasn't aware that this could be done, but obviously it can. jimsmith, post your solution up when you get it working, I'd like to see it.
yea, thanks for the link penagate, here's another that's linked from the page you gave me. http://evan.nixsys.bz/note/ but since this is the first time I'm dealing with css, the explanations seem to be a little out of my league. I will keep trying, but I'm also going to look for a way to call my image with a regular <img> tag, instead of it being a background image.