[http://ca.geocities.com/satanicneopunks/index2.html]
That's the site this question is about, just for reference.
I used a site map to make different parts of the picture into different links to the parts of my site. The thing is, I have an I-Frame at the bottom where the pages appear (I just put it there so the pages WILL appeare somewhere). But what I was wondering is how to make them pop up in a seperate frame.
Thank you.
J E P P O
05-25-2003, 05:33 AM
wat, like this:
<a href="###" target="_blank">Ur Stuff Here</a>
this is probably far from wat u r lookin 4 but hey...if not reply,
Cheers
Hm...no, not quite.
I know how to make a pop up window with a picture, a button, text link...everything that's in the tutorials here. But I do not know how to make one appear when you click on an area in a site map.
If it's any help here's the HTML I have on the page:
<map name="mymap">
<area shape="rect" coords="10,0,250,120" href="story.html" target="main">
<area shape="rect" coords="150,130,250,225" href="cast.html"target="main">
<area shape="rect" coords="420,75,100,150" href="gallery.html"target="main">
<area shape="rect" coords="400,280,220,370" href="creators.html"target="main">
<area shape="rect" coords="50,250,300,400" href="updates.html"target="main">
<area shape="rect" coords="600,200,450,100" href="etc.html"target="main">
<area shape="rect" coords="450,275,300,160" href="links.html"target="main">
</map>
Dude128
05-26-2003, 02:40 AM
just add the target to the <area> tag like you did, but you should have a space between the href and target attributes. and target="main" doesn't work because that targets it to the same window- so try just changing the to _blank
I think that's what you want? you're question was a little unclear- do you want a new window, or do you want them in an iframe??
i just put it in the I frame for the time being, so people could still see the page without it looking odd. Yes, i want the page in a new window, but I want to designate the size and positioning of it.