View Full Version : Help With Frames


drdre_37
06-09-2003, 01:35 AM
Hey, I learned how to make frames here, so I did that at my site. What I was wonderin is, say I clicked on one of my links on the left, how do I make it so it only shows that page, not the frames.



I also was wondering, how do I add picture links in left part of my frames?

Jrfan888
06-09-2003, 04:22 AM
do you mean, you want it in a new window?
I that case you would put:
<a href="blah.html" target="_blank">click</a>
or
<a href="blah.html" target="new">click</a>

pb&j
06-09-2003, 06:05 AM
Originally posted by Jrfan888
do you mean, you want it in a new window?
I that case you would put:
<a href="blah.html" target="_blank">click</a>
or
<a href="blah.html" target="new">click</a>

the "_blank" reference will create a new window to open each time.

the "new" reference will create a new window once if no areas are named that already, any further links with the same reference will do the same.

the "_top" reference will open the link fully in the current browser window if that is your preference.