View Full Version : Image Maps


Eternal Neptune
06-05-2003, 11:03 PM
Okay, trying to make an image map in a table. I used the border="0" thingie, but it still makes a line break before the next row (not like the blue outline you see on a linked image, rather just a gap) The image map must be the exact size of that space in the table, because the image there must take up the whole space (it's one image that's part of a bigger one so they kind of need to connect! 0_o) Basically, is there some other tag I need to use? I've tried setting the exact width and height, but it didn't work. I hope I haven't confused you all terribly.

~Karen

zangerbanger
06-05-2003, 11:51 PM
It seems like you did everything right, but does your code look sort of like this?


<table width="WIDTH OF IMAGE" height="HEIGHT OF IMAGE" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<img src="URL OF IMAGE" usemap="#map">
</td>
</tr>
</table>


If not, try that and see if it works :) .

Eternal Neptune
06-06-2003, 03:06 AM
yeah, that's what it looks like, except with more stuff added, of course ;p

I did a colspan (correctly, I think) -- do you think that would make a difference?

~Karen