Inline Frames

E

Ensenada Tom

I have placed an inline frame in a page in FP2002. The inline frame contains
a list of hyperlinks to other pages. Everything's cool EXCEPT that when I
click on a hyperlink in the frame the linked page opens in the frame. I want
it to open just like a regular hyperlinked page - - replacing the page that
contains the inline frame. Can anyone help?
 
R

Ronx

Add a target to each hyperlink
<a href="page.htm target=_top">Page description</a>

If using the Hyperlink dialogue, click the Target Frame button and
choose "Whole Page", and check the "Set as Page default" checkbox. This
will add a default target to the <head> section of the page - then the
other links do not need to be changed.

In code view this is:

<base target="_top">
placed just before
</head>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top