Can't Get to work

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

Guest

Hello

I am have created a banner page in Frontpage but my banner links keep opening in my contents pane. I can't get them to open in the main pane. My professor hasn't gotten back to me about it

Can anyone give me a hand

Thank

Garrett
 
Give us a URL, please?
Garrett said:
Hello,

I am have created a banner page in Frontpage but my banner links keep
opening in my contents pane. I can't get them to open in the main pane. My
professor hasn't gotten back to me about it.
 
If using a Frameset, then FP navigation components are not meant to be used with frames, as you can
not set a frame target value.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
Open your top banner page in FP, then select each link, then set the frame target value to _top
(Whole Page)

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
Hello

Thanks for the tip. But I have tried that already, and it does the same thing. You can check it out for yourself. I uploaded the new file to the serve. I changed every link to Whole page, and it opens in the content pane

Thank

Garrett
 
I don't any see any target value set, however open the banner and switch to HTML / Code view and at
the top of the page change:

<base target="contents">

to

<base target="_top">
--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================


Garrett said:
Hello.

Thanks for the tip. But I have tried that already, and it does the same thing. You can check it
out for yourself. I uploaded the new file to the serve. I changed every link to Whole page, and it
opens in the content pane.
 
Your frameset has
<frameset rows="142,*">
<frame name="banner" scrolling="no" noresize target="contents" src="Banner.htm">
<frameset cols="150,*">
<frame name="contents" target="" src="Contents.html">
<frame name="main" src="Womens.htm" scrolling="auto">
</frameset>
Aand should have
<frameset rows="142,*">
<frame name="banner" scrolling="no" noresize target="main" src="Banner.htm">
<frameset cols="150,*">
<frame name="contents" target="main" src="Contents.html">
<frame name="main" src="Womens.htm" target="_self" scrolling="auto">
</frameset>

--




| Hello.
|
| Thanks for the tip. But I have tried that already, and it does the same thing. You can check it out for yourself. I uploaded
the new file to the serve. I changed every link to Whole page, and it opens in the content pane.
|
| Thanks
|
| Garrett
 

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

Back
Top