Redirecting Navigation part to different frame.

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
 
T

Thomas A. Rowe

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.
==============================================
 
T

Trevor L.

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
 

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