Redirecting Navigation part to different frame.

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

Guest

I have three frames. The top frame is a title frame. The left frame has a
navigation bar and the third frame is the Main window frame.

My problem is the navigation bar will send the new page to the top, title
frame rather then my main frame. How can I retarget the navigation bar to
the main frame rather then the title bar.
?

Thanks
 
FP navigation components are not designed to be use with frames.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
Brookmc2 said:
I have three frames. The top frame is a title frame. The left frame
has a navigation bar and the third frame is the Main window frame.

My problem is the navigation bar will send the new page to the top,
title frame rather then my main frame. How can I retarget the
navigation bar to the main frame rather then the title bar.
?

Thanks

You will have to go to the Code or HTML view and change the links to read
<a href="about.html" target="index_main">............
(This is an example from my site which uses frames in the same way.)

or you could add this to the <head> section
<base target="index_main"/>
in which case all links will load into index_main

"index_main" is the name given to the main frame in your index.html file
 
Back
Top