PDA

View Full Version : Image Map Overlapping ?


asian42die4
06-18-2003, 07:05 AM
Hello. I am sonctructing a webpage, however i map everything.. the iframe is in the backround, how to put the iframe on top as the image map is overlapping :)

<html>

<head>


<title>Welcome to my webpage</title>
<iframe name="framesId2" width="700" height="400" scrolling="auto" frameborder="0" align="right" src="aright.htm" ALLOWTRANSPARENCY="false"></iframe>
</head>

<body bgcolor = "black">
<img src="../wallpaper/desktop2.jpg" usemap="#desktop2" border="0">

<map name="desktop2">
<area shape="rect" coords="20,16,56,66" href="url" target="framesId2">
<area shape="rect" coords="18,84,58,134" href="url" target="target">
<area shape="rect" coords="8,150,66,200" href="url" target="target">
<area shape="rect" coords="18,218,62,268" href="url" target="target">
<area shape="rect" coords="56,334,20,284" href="url" target="target">
<area shape="rect" coords="56,402,20,352" href="url" target="target">

</map>
</body>

</html>