S
startear81
Guest
this is the code for the source file
<div style="position: absolute; top:10; left:10">
<IFRAME name="opt" src="options.htm" width=600 height=190 scrolling=auto allowtransparency=true>
</IFRAME>
</div>
<div style="position: absolute; top:215; left:10">
<IFRAME name="display" src="main.htm" width=600 height=750 scrolling=auto allowtransparency=true>
</IFRAME>
</div>
and i have set on a part that opens in the option and when you click on a thumbnail it opens in the "Display" frame, when you click on one thumbnail it opens in the display but if you click on another thumbnail it opens in a new window.
In the option part (nav where the thumbnails are) I have set it up in two different ways and with both it did the same thing.
First I had setup
<base target="display">
and the thumbnails all just hyperlinked like this;
<a href="1.jpg"><img border="0" src="tn_1.jpg"></a>
and the other manner i tried is where I removed the <base target> and instead just set up each thumbnail like such
<a href="1.jpg" target="display"><img border="0" src="tn_1.jpg"></a>
<div style="position: absolute; top:10; left:10">
<IFRAME name="opt" src="options.htm" width=600 height=190 scrolling=auto allowtransparency=true>
</IFRAME>
</div>
<div style="position: absolute; top:215; left:10">
<IFRAME name="display" src="main.htm" width=600 height=750 scrolling=auto allowtransparency=true>
</IFRAME>
</div>
and i have set on a part that opens in the option and when you click on a thumbnail it opens in the "Display" frame, when you click on one thumbnail it opens in the display but if you click on another thumbnail it opens in a new window.
In the option part (nav where the thumbnails are) I have set it up in two different ways and with both it did the same thing.
First I had setup
<base target="display">
and the thumbnails all just hyperlinked like this;
<a href="1.jpg"><img border="0" src="tn_1.jpg"></a>
and the other manner i tried is where I removed the <base target> and instead just set up each thumbnail like such
<a href="1.jpg" target="display"><img border="0" src="tn_1.jpg"></a>