darkgenie226
06-15-2003, 06:45 PM
When i put my links on my page i want the links to go in the box when u click them..how do i do that ...http://www.geocities.com/crochuntersworld/x-men/Xmen.HTML
|
View Full Version : i got my iframe up but darkgenie226 06-15-2003, 06:45 PM When i put my links on my page i want the links to go in the box when u click them..how do i do that ...http://www.geocities.com/crochuntersworld/x-men/Xmen.HTML MaGiCSuN 06-15-2003, 07:22 PM put name="NAMEHERE" in the iframe code, and replace NAMEHERE with a name like "iframe" or "box" then put this target="NAMEHERE" into your <a href> code and replace NAMEHERE with the name you have given the iframe. Love, Mirna darkgenie226 06-15-2003, 07:27 PM <iframe src="http://www.geocities.com/crochuntersworld/x-men/Inframe.HTML" name="inlineframe" width="300" height="300"></iframe> <a href="http://www.geocities.com/crochuntersworld/x-men" target="inlineframe">xmen</a>........ ???cause i put that on my inedix page ..it didnt work MaGiCSuN 06-15-2003, 07:42 PM you missed .html behind your <a href> url so that might be the reason why it didn't worked :) Love, Mirna darkgenie226 06-15-2003, 07:48 PM <iframe src="http://www.geocities.com/crochuntersworld/x-men/Inframe.HTML" name="inlineframe" width="300" height="300"></iframe> <a href="http://www.geocities.com/crochuntersworld/x-men.HTML" target="inlineframe">xmen</a> i put it in ...and it still didnt work..is it suppose to go on all the pages MaGiCSuN 06-15-2003, 07:53 PM <iframe src="http://www.geocities.com/crochuntersworld/x-men/Inframe.html" name="inlineframe" width="300" height="300"></iframe> <a href="http://www.geocities.com/crochuntersworld/x-men.html" target="inlineframe">xmen</a> when saving the .html files it always get saved in lower case, so you also have to type the .html part in lower case too. also x-men.html must excist, if you where meant to let index.html open into the iframe you have to type http://www.geocities.com/crochuntersworld/x-men/index.html or simply type index.html Love, Mirna darkgenie226 06-15-2003, 07:54 PM Thanks.... MaGiCSuN 06-15-2003, 07:54 PM Your welcome :) |