View Full Version : why are my links pop ups?


jessesbaby22
05-28-2003, 01:02 AM
why are my links coming up as pop ups? heres the code that i think is making it pop up:

<html>
<head>
<title>Still Lives On</title>
<link rel="stylesheet" href="css.css" type="text/css">
</head>
<body background="bg.jpg">

<! ---Begin Layout--- !>
<img src="layout2.jpg" usemap="#layout2.jpg" border="0" style="position: absolute; top: 0; left: 0;">

<map name="layout2.jpg">
<area shape="rect" coords="36,456,151,478" href="dreamstreet.html" target="dream street">
<area shape="rect" coords="167,459,219,479" href="media.html" target="media">
<area shape="rect" coords="237,458,298,477" href="humor.html" target="humor">
<area shape="rect" coords="315,458,352,477" href="fan.html" target="fan">
<area shape="rect" coords="369,457,460,478" href="interaction.html" target="interaction">
<area shape="rect" coords="472,456,507,479" href="site.html" target="site">
<area shape="rect" coords="526,458,601,479" href="www.html" target="www">
<area shape="rect" coords="615,456,664,478" href="index.html" target="index">

</map>
<! ---End Layout--- !>


<! ---Begin Frame 1--- !>
<div style="position: absolute; top: 475; left: 455;">
<iframe src="side.html" name="side" width="235" height="1500" frameborder="0" border="0" ALLOWTRANSPARENCY="true"></iframe>
</div>
<! ---End Frame 1--- !>




<! ---Begin Frame 2--- !>
<div style="position: absolute; top: 480; left: 35;">
<iframe src="main.html" name="main" width="384" height="1500" frameborder="0" border="0" ALLOWTRANSPARENCY="true"></iframe>
</div>
<! ---End Frame 2--- !>



</BODY>
</HTML>

thanks

Dude128
05-28-2003, 01:11 AM
your targets have to match your iframe names exactly- you're targetting to media, humor, fan, etc. but your iframes are named side and main