A second set of navigation buttons problem

C

Chris

I have a site that uses a vertical navigation bar for the
main navigation. One of the pages on my site has a set of
hyperlinks that open a subset of pages that display in an
inline frame on that page.

All works ok until the page with the inline frame is
open, then the main navigation buttons now open in the
inline frame.

Any ideas how I can prevent this?

Thanks!
 
J

Jim Buyens

Switch to HTML view (or, in FP2003, to Code view)and look
for a tag like

<base target="I1">

in your <head> section. If you find this, delete it.

You'll then need to add a target="I1" attribute to each
hyperlink that you *want* to appear in teh inline frame.

(This, or course, presumes that the name of your inline
frame is I1, as in <iframe name="I1">.)

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Office FrontPage 2003 Inside Out
||---------------------------------------------------
|| Web Database Development Step by Step .NET Edition
|| Microsoft FrontPage Version 2002 Inside Out
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------
 
Top