|
I can't really understand what's going on but my guess is that when you click a link it's supposed to open a page in the iframe below the banner image. You haven't even specified a name for that iframe nor are your hyperlinks (<area>) using the target attribute so what do you expect? Naturally, clicking them brings you to a new page like any normal link click. To get that effect you need to do something like:
<area target="magicframe" [...]/>
<iframe name="magicframe" [...]></iframe>
edit: Ah, I see the problem now. This line of code in the iframe is causing the hyperlink destination to become the parent window:
<BASE TARGET="_parent">
Last edited by Arbitrator; 05-02-2006 at 03:34 AM..
Reason: added information
|