Can't Get to work

G

Garrett

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
 
E

E. T. Culling

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

Thomas A. Rowe

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

Thomas A. Rowe

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

Garrett

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
 
T

Thomas A. Rowe

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.
 
S

Stefan B Rusynko

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
 
Top