View Full Version : HELP WiTH Iframes!!!


r0dd1ck_luv3r
03-02-2005, 03:03 AM
HELP! I'm trying to make iFRAMES on my site and I have the left frame and the main frame both in place but when I click on the link in the left frame it only appears in that frame and no matter what I do it won't go into the main frame!!!

e-mail me @ mini_duckeh@hotmail.com if you have an answer!! or post

Valkyrie
03-02-2005, 03:11 AM
You probably didnt target the links correctly. Your links will need to targeted to the main frame. Whatever you named the main frame, that will be your target.

<iframe name="main" src="main.html" width="#" height="#" scrolling="auto"></iframe>

Notice the the iframe name in bold? Now to target your links to that frame, you need to do this:

<a href="url" target="main">Link</a>

So for the links on the left frame, you need to add the correct target (which is the name of the main frame). The name and target need to match in order to work. If it doesnt work, please post the page you are having trouble with.