using frames in FrontPage 2003

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to use Multiple frames on my page as hyperlinks. I can get them to
start up new browsers [without menus that kids can use to cause trouble].

If I use a mouse action, like onclick, every frame opens up a new windows.

How can I limit the action of each frame to operate only when clicked?
 
You need to set the "target" in the hyperlinks dialogue to the frame's name
that you want the page to open in.

eg if you have three frames called main, menu and heading, then you need to
set the target in the hyperlinks on the "menu" frame to open in the "main"
frame.

eg <a href="about.html" target="main">About Us"</a>

You can set the target through the GUI - in the hyperlinks dialogue.
 
Back
Top