PC Review


Reply
Thread Tools Rate Thread

How do you set up a navigational frame to stay on each web page?

 
 
=?Utf-8?B?bWZhdm9y?=
Guest
Posts: n/a
 
      4th Jun 2005
I have created a web page with 3 frames, one being a navigational frame (with
links to other web pages) on the side with a menu. Then I have a banner at
the top as another frame. I want these 2 frames to stay on every web page
and the 3rd frame to be the one that changes according to the navigational
menu . How do I set the frames 1 & 2 to stay on each page without having to
create them on each page?
 
Reply With Quote
 
 
 
 
Trevor L.
Guest
Posts: n/a
 
      5th Jun 2005
I do it this way

<frameset rows="78,*">
<noframes>
To view this document, you need a frames-compatible browser such as
Netscape 2.0 and above.
</noframes>
<frame src="heading.html" name="heading" scrolling="no"
noresize="noresize">
<frameset cols="145,*">
<frame src="sidebar.html" name="sidebar" scrolling="yes"
noresize="noresize">
<frame src="index_main.html" name="index_main" scrolling="yes"
noresize="noresize">
</frameset>
</frameset>

index_main is the frame that varies. The others stay the same.

To vary the contents of index_main, your side menu should have links like
this:
<a href="about.html" target="index_main">
<a href="album.html" target="index_main">

etc.
--
Cheers,
Trevor L.
Website: http://tandcl.homemail.com.au

mfavor wrote:
> I have created a web page with 3 frames, one being a navigational
> frame (with links to other web pages) on the side with a menu. Then
> I have a banner at the top as another frame. I want these 2 frames
> to stay on every web page and the 3rd frame to be the one that
> changes according to the navigational menu . How do I set the frames
> 1 & 2 to stay on each page without having to create them on each page?



I choose Polesoft Lockspam to fight spam, and you?
http://www.polesoft.com/refer.html


 
Reply With Quote
 
=?Utf-8?B?bWZhdm9y?=
Guest
Posts: n/a
 
      5th Jun 2005
Ok Trevor, thanks so much for the help. Since I am new to frontpage and new
to creating websites, can you please tell me where exactly do I put this info
you gave me? Thanks! If you need to look at my website, it is
www.harrisonfastpitch.com
Marion

"Trevor L." wrote:

> I do it this way
>
> <frameset rows="78,*">
> <noframes>
> To view this document, you need a frames-compatible browser such as
> Netscape 2.0 and above.
> </noframes>
> <frame src="heading.html" name="heading" scrolling="no"
> noresize="noresize">
> <frameset cols="145,*">
> <frame src="sidebar.html" name="sidebar" scrolling="yes"
> noresize="noresize">
> <frame src="index_main.html" name="index_main" scrolling="yes"
> noresize="noresize">
> </frameset>
> </frameset>
>
> index_main is the frame that varies. The others stay the same.
>
> To vary the contents of index_main, your side menu should have links like
> this:
> <a href="about.html" target="index_main">
> <a href="album.html" target="index_main">
>
> etc.
> --
> Cheers,
> Trevor L.
> Website: http://tandcl.homemail.com.au
>
> mfavor wrote:
> > I have created a web page with 3 frames, one being a navigational
> > frame (with links to other web pages) on the side with a menu. Then
> > I have a banner at the top as another frame. I want these 2 frames
> > to stay on every web page and the 3rd frame to be the one that
> > changes according to the navigational menu . How do I set the frames
> > 1 & 2 to stay on each page without having to create them on each page?

>
>
> I choose Polesoft Lockspam to fight spam, and you?
> http://www.polesoft.com/refer.html
>
>
>

 
Reply With Quote
 
Trevor L.
Guest
Posts: n/a
 
      6th Jun 2005
Marion

This is your HTML
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Harrison Fastpitch Homepage</title>
</head>
<frameset rows="190,*">
<frame name="banner" scrolling="no" noresize target="contents"
src="lady_hoyas_fastpitch1.htm">
<frameset cols="191,*">
<frame name="contents" target="_parent"
src="carl_harrison_high_school_4500_d1.htm" scrolling="auto" noresize>
<frame name="main" src="new_page_4.htm" scrolling="auto">
</frameset>
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>
</html>

I would rewrite as this

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Harrison Fastpitch Homepage</title>
</head>

<frameset rows="190,*">
<frame name="banner" scrolling="no" noresize="noresize"
src="lady_hoyas_fastpitch1.htm">
<frameset cols="191,*">
<frame name="contents"
src="carl_harrison_high_school_4500_d1.htm" scrolling="auto"
noresize="noresize">
<frame name="main" src="new_page_4.htm" scrolling="auto">
</frameset>
<noframes> <p>This page uses frames, but your browser doesn't support
them.</p> </noframes>
</frameset>

</html>

This is little different, just that:
1. <body></body> tags aren't needed inside <noframes></noframes>
2. I have removed target="..." as I don't know what purpose these serve. I
omit them in my code with no harm done.
3. The correct syntax of noresize is as shown, although it doesn't cause an
error.

In your menu code you need to use target="main"

I notice hovever, this code in the <head> section
<base target="main">
Unfortunately, I haven't much experience in the use of the base tag
I would have written
<a href="Harrison%20Fastpitch%20Homepage.htm" target="main"> and similarly
for other <a href> tags

According to http://www.w3schools.com/tags/tag_base.asp, target="main" (or a
named frame) is not an option.
But, if it works for you then great.

I have checked out you site and it seems to work as you want, so really
there is nothing change.
:-)
--
Good Luck,
Trevor L.
Website: http://tandcl.homemail.com.au

mfavor wrote:
> Ok Trevor, thanks so much for the help. Since I am new to frontpage
> and new to creating websites, can you please tell me where exactly do
> I put this info you gave me? Thanks! If you need to look at my
> website, it is www.harrisonfastpitch.com
> Marion
>
> "Trevor L." wrote:
>
>> I do it this way
>>
>> <frameset rows="78,*">
>> <noframes>
>> To view this document, you need a frames-compatible browser such as
>> Netscape 2.0 and above.
>> </noframes>
>> <frame src="heading.html" name="heading" scrolling="no"
>> noresize="noresize">
>> <frameset cols="145,*">
>> <frame src="sidebar.html" name="sidebar" scrolling="yes"
>> noresize="noresize">
>> <frame src="index_main.html" name="index_main" scrolling="yes"
>> noresize="noresize">
>> </frameset>
>> </frameset>
>>
>> index_main is the frame that varies. The others stay the same.
>>
>> To vary the contents of index_main, your side menu should have links
>> like this:
>> <a href="about.html" target="index_main">
>> <a href="album.html" target="index_main">
>>
>> etc.
>> --
>> Cheers,
>> Trevor L.
>> Website: http://tandcl.homemail.com.au
>>
>> mfavor wrote:
>>> I have created a web page with 3 frames, one being a navigational
>>> frame (with links to other web pages) on the side with a menu. Then
>>> I have a banner at the top as another frame. I want these 2 frames
>>> to stay on every web page and the 3rd frame to be the one that
>>> changes according to the navigational menu . How do I set the
>>> frames 1 & 2 to stay on each page without having to create them on
>>> each page?

>>
>>
>> I choose Polesoft Lockspam to fight spam, and you?
>> http://www.polesoft.com/refer.html



 
Reply With Quote
 
=?Utf-8?B?bWZhdm9y?=
Guest
Posts: n/a
 
      6th Jun 2005
Thank you Trevor. After I posted my question, I went back and played around
with it. I am not really sure what I did but it fixed it. But, I appreciate
your help. Next time I will know what I need to do to set it up that way.
Thank you very much.
Marion

"Trevor L." wrote:

> Marion
>
> This is your HTML
> <html>
> <head>
> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
> <title>Harrison Fastpitch Homepage</title>
> </head>
> <frameset rows="190,*">
> <frame name="banner" scrolling="no" noresize target="contents"
> src="lady_hoyas_fastpitch1.htm">
> <frameset cols="191,*">
> <frame name="contents" target="_parent"
> src="carl_harrison_high_school_4500_d1.htm" scrolling="auto" noresize>
> <frame name="main" src="new_page_4.htm" scrolling="auto">
> </frameset>
> <noframes>
> <body>
> <p>This page uses frames, but your browser doesn't support them.</p>
> </body>
> </noframes>
> </frameset>
>

<script language="JavaScript">
<!--

window.open = SymRealWinOpen;

//-->
</script>

</html>
>
> I would rewrite as this
>
> <html>
> <head>
> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
> <title>Harrison Fastpitch Homepage</title>
> </head>
>
> <frameset rows="190,*">
> <frame name="banner" scrolling="no" noresize="noresize"
> src="lady_hoyas_fastpitch1.htm">
> <frameset cols="191,*">
> <frame name="contents"
> src="carl_harrison_high_school_4500_d1.htm" scrolling="auto"
> noresize="noresize">
> <frame name="main" src="new_page_4.htm" scrolling="auto">
> </frameset>
> <noframes> <p>This page uses frames, but your browser doesn't support
> them.</p> </noframes>
> </frameset>
>
>

<script language="JavaScript">
<!--

window.open = SymRealWinOpen;

//-->
</script>

</html>
>
> This is little different, just that:
> 1. <body></body> tags aren't needed inside <noframes></noframes>
> 2. I have removed target="..." as I don't know what purpose these serve. I
> omit them in my code with no harm done.
> 3. The correct syntax of noresize is as shown, although it doesn't cause an
> error.
>
> In your menu code you need to use target="main"
>
> I notice hovever, this code in the <head> section
> <base target="main">
> Unfortunately, I haven't much experience in the use of the base tag
> I would have written
> <a href="Harrison%20Fastpitch%20Homepage.htm" target="main"> and similarly
> for other <a href> tags
>
> According to http://www.w3schools.com/tags/tag_base.asp, target="main" (or a
> named frame) is not an option.
> But, if it works for you then great.
>
> I have checked out you site and it seems to work as you want, so really
> there is nothing change.
> :-)
> --
> Good Luck,
> Trevor L.
> Website: http://tandcl.homemail.com.au
>
> mfavor wrote:
> > Ok Trevor, thanks so much for the help. Since I am new to frontpage
> > and new to creating websites, can you please tell me where exactly do
> > I put this info you gave me? Thanks! If you need to look at my
> > website, it is www.harrisonfastpitch.com
> > Marion
> >
> > "Trevor L." wrote:
> >
> >> I do it this way
> >>
> >> <frameset rows="78,*">
> >> <noframes>
> >> To view this document, you need a frames-compatible browser such as
> >> Netscape 2.0 and above.
> >> </noframes>
> >> <frame src="heading.html" name="heading" scrolling="no"
> >> noresize="noresize">
> >> <frameset cols="145,*">
> >> <frame src="sidebar.html" name="sidebar" scrolling="yes"
> >> noresize="noresize">
> >> <frame src="index_main.html" name="index_main" scrolling="yes"
> >> noresize="noresize">
> >> </frameset>
> >> </frameset>
> >>
> >> index_main is the frame that varies. The others stay the same.
> >>
> >> To vary the contents of index_main, your side menu should have links
> >> like this:
> >> <a href="about.html" target="index_main">
> >> <a href="album.html" target="index_main">
> >>
> >> etc.
> >> --
> >> Cheers,
> >> Trevor L.
> >> Website: http://tandcl.homemail.com.au
> >>
> >> mfavor wrote:
> >>> I have created a web page with 3 frames, one being a navigational
> >>> frame (with links to other web pages) on the side with a menu. Then
> >>> I have a banner at the top as another frame. I want these 2 frames
> >>> to stay on every web page and the 3rd frame to be the one that
> >>> changes according to the navigational menu . How do I set the
> >>> frames 1 & 2 to stay on each page without having to create them on
> >>> each page?
> >>
> >>
> >> I choose Polesoft Lockspam to fight spam, and you?
> >> http://www.polesoft.com/refer.html

>
>
>

 
Reply With Quote
 
=?Utf-8?B?bWZhdm9y?=
Guest
Posts: n/a
 
      6th Jun 2005
One more thing. This may be a stupid question but I like I said I am new at
this. I see where is has that the brower doesn't support frames. IF it
didn't support frames why does it work? Is that for people whose browser
doesn't support frames? Just wondered why that was there.

"Trevor L." wrote:

> Marion
>
> This is your HTML
> <html>
> <head>
> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
> <title>Harrison Fastpitch Homepage</title>
> </head>
> <frameset rows="190,*">
> <frame name="banner" scrolling="no" noresize target="contents"
> src="lady_hoyas_fastpitch1.htm">
> <frameset cols="191,*">
> <frame name="contents" target="_parent"
> src="carl_harrison_high_school_4500_d1.htm" scrolling="auto" noresize>
> <frame name="main" src="new_page_4.htm" scrolling="auto">
> </frameset>
> <noframes>
> <body>
> <p>This page uses frames, but your browser doesn't support them.</p>
> </body>
> </noframes>
> </frameset>
>

<script language="JavaScript">
<!--

window.open = SymRealWinOpen;

//-->
</script>

</html>
>
> I would rewrite as this
>
> <html>
> <head>
> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
> <title>Harrison Fastpitch Homepage</title>
> </head>
>
> <frameset rows="190,*">
> <frame name="banner" scrolling="no" noresize="noresize"
> src="lady_hoyas_fastpitch1.htm">
> <frameset cols="191,*">
> <frame name="contents"
> src="carl_harrison_high_school_4500_d1.htm" scrolling="auto"
> noresize="noresize">
> <frame name="main" src="new_page_4.htm" scrolling="auto">
> </frameset>
> <noframes> <p>This page uses frames, but your browser doesn't support
> them.</p> </noframes>
> </frameset>
>
>

<script language="JavaScript">
<!--

window.open = SymRealWinOpen;

//-->
</script>

</html>
>
> This is little different, just that:
> 1. <body></body> tags aren't needed inside <noframes></noframes>
> 2. I have removed target="..." as I don't know what purpose these serve. I
> omit them in my code with no harm done.
> 3. The correct syntax of noresize is as shown, although it doesn't cause an
> error.
>
> In your menu code you need to use target="main"
>
> I notice hovever, this code in the <head> section
> <base target="main">
> Unfortunately, I haven't much experience in the use of the base tag
> I would have written
> <a href="Harrison%20Fastpitch%20Homepage.htm" target="main"> and similarly
> for other <a href> tags
>
> According to http://www.w3schools.com/tags/tag_base.asp, target="main" (or a
> named frame) is not an option.
> But, if it works for you then great.
>
> I have checked out you site and it seems to work as you want, so really
> there is nothing change.
> :-)
> --
> Good Luck,
> Trevor L.
> Website: http://tandcl.homemail.com.au
>
> mfavor wrote:
> > Ok Trevor, thanks so much for the help. Since I am new to frontpage
> > and new to creating websites, can you please tell me where exactly do
> > I put this info you gave me? Thanks! If you need to look at my
> > website, it is www.harrisonfastpitch.com
> > Marion
> >
> > "Trevor L." wrote:
> >
> >> I do it this way
> >>
> >> <frameset rows="78,*">
> >> <noframes>
> >> To view this document, you need a frames-compatible browser such as
> >> Netscape 2.0 and above.
> >> </noframes>
> >> <frame src="heading.html" name="heading" scrolling="no"
> >> noresize="noresize">
> >> <frameset cols="145,*">
> >> <frame src="sidebar.html" name="sidebar" scrolling="yes"
> >> noresize="noresize">
> >> <frame src="index_main.html" name="index_main" scrolling="yes"
> >> noresize="noresize">
> >> </frameset>
> >> </frameset>
> >>
> >> index_main is the frame that varies. The others stay the same.
> >>
> >> To vary the contents of index_main, your side menu should have links
> >> like this:
> >> <a href="about.html" target="index_main">
> >> <a href="album.html" target="index_main">
> >>
> >> etc.
> >> --
> >> Cheers,
> >> Trevor L.
> >> Website: http://tandcl.homemail.com.au
> >>
> >> mfavor wrote:
> >>> I have created a web page with 3 frames, one being a navigational
> >>> frame (with links to other web pages) on the side with a menu. Then
> >>> I have a banner at the top as another frame. I want these 2 frames
> >>> to stay on every web page and the 3rd frame to be the one that
> >>> changes according to the navigational menu . How do I set the
> >>> frames 1 & 2 to stay on each page without having to create them on
> >>> each page?
> >>
> >>
> >> I choose Polesoft Lockspam to fight spam, and you?
> >> http://www.polesoft.com/refer.html

>
>
>

 
Reply With Quote
 
=?Windows-1252?Q?Rob_Giordano_\=28Crash_Gordon=AE\
Guest
Posts: n/a
 
      6th Jun 2005
Only the top half of your top banner is visible to me...all I can see is Lady Hoyas and then just the tops of the letters of what I assume to be "fastpitch"
===
You need to optimize your images (there aren't many yet) but the small image of Janet Oglesby is OVER 1.25 MEG...way too big.

Download and use IrFanview (free program) to resize, crop, batch name, OPTIMIZE your images BEFORE you Import them into FP for use in your design...it'll save you a lot of work later.


"mfavor" <(E-Mail Removed)> wrote in message news:FB58EFFB-8166-4015-86F7-(E-Mail Removed)...
> One more thing. This may be a stupid question but I like I said I am new at
> this. I see where is has that the brower doesn't support frames. IF it
> didn't support frames why does it work? Is that for people whose browser
> doesn't support frames? Just wondered why that was there.
>
> "Trevor L." wrote:
>
> > Marion
> >
> > This is your HTML
> > <html>
> > <head>
> > <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
> > <title>Harrison Fastpitch Homepage</title>
> > </head>
> > <frameset rows="190,*">
> > <frame name="banner" scrolling="no" noresize target="contents"
> > src="lady_hoyas_fastpitch1.htm">
> > <frameset cols="191,*">
> > <frame name="contents" target="_parent"
> > src="carl_harrison_high_school_4500_d1.htm" scrolling="auto" noresize>
> > <frame name="main" src="new_page_4.htm" scrolling="auto">
> > </frameset>
> > <noframes>
> > <body>
> > <p>This page uses frames, but your browser doesn't support them.</p>
> > </body>
> > </noframes>
> > </frameset>
> >

> <script language="JavaScript">
> <!--
>
> window.open = SymRealWinOpen;
>
> //-->
> </script>
>
> </html>
> >
> > I would rewrite as this
> >
> > <html>
> > <head>
> > <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
> > <title>Harrison Fastpitch Homepage</title>
> > </head>
> >
> > <frameset rows="190,*">
> > <frame name="banner" scrolling="no" noresize="noresize"
> > src="lady_hoyas_fastpitch1.htm">
> > <frameset cols="191,*">
> > <frame name="contents"
> > src="carl_harrison_high_school_4500_d1.htm" scrolling="auto"
> > noresize="noresize">
> > <frame name="main" src="new_page_4.htm" scrolling="auto">
> > </frameset>
> > <noframes> <p>This page uses frames, but your browser doesn't support
> > them.</p> </noframes>
> > </frameset>
> >
> >

> <script language="JavaScript">
> <!--
>
> window.open = SymRealWinOpen;
>
> //-->
> </script>
>
> </html>
> >
> > This is little different, just that:
> > 1. <body></body> tags aren't needed inside <noframes></noframes>
> > 2. I have removed target="..." as I don't know what purpose these serve. I
> > omit them in my code with no harm done.
> > 3. The correct syntax of noresize is as shown, although it doesn't cause an
> > error.
> >
> > In your menu code you need to use target="main"
> >
> > I notice hovever, this code in the <head> section
> > <base target="main">
> > Unfortunately, I haven't much experience in the use of the base tag
> > I would have written
> > <a href="Harrison%20Fastpitch%20Homepage.htm" target="main"> and similarly
> > for other <a href> tags
> >
> > According to http://www.w3schools.com/tags/tag_base.asp, target="main" (or a
> > named frame) is not an option.
> > But, if it works for you then great.
> >
> > I have checked out you site and it seems to work as you want, so really
> > there is nothing change.
> > :-)
> > --
> > Good Luck,
> > Trevor L.
> > Website: http://tandcl.homemail.com.au
> >
> > mfavor wrote:
> > > Ok Trevor, thanks so much for the help. Since I am new to frontpage
> > > and new to creating websites, can you please tell me where exactly do
> > > I put this info you gave me? Thanks! If you need to look at my
> > > website, it is www.harrisonfastpitch.com
> > > Marion
> > >
> > > "Trevor L." wrote:
> > >
> > >> I do it this way
> > >>
> > >> <frameset rows="78,*">
> > >> <noframes>
> > >> To view this document, you need a frames-compatible browser such as
> > >> Netscape 2.0 and above.
> > >> </noframes>
> > >> <frame src="heading.html" name="heading" scrolling="no"
> > >> noresize="noresize">
> > >> <frameset cols="145,*">
> > >> <frame src="sidebar.html" name="sidebar" scrolling="yes"
> > >> noresize="noresize">
> > >> <frame src="index_main.html" name="index_main" scrolling="yes"
> > >> noresize="noresize">
> > >> </frameset>
> > >> </frameset>
> > >>
> > >> index_main is the frame that varies. The others stay the same.
> > >>
> > >> To vary the contents of index_main, your side menu should have links
> > >> like this:
> > >> <a href="about.html" target="index_main">
> > >> <a href="album.html" target="index_main">
> > >>
> > >> etc.
> > >> --
> > >> Cheers,
> > >> Trevor L.
> > >> Website: http://tandcl.homemail.com.au
> > >>
> > >> mfavor wrote:
> > >>> I have created a web page with 3 frames, one being a navigational
> > >>> frame (with links to other web pages) on the side with a menu. Then
> > >>> I have a banner at the top as another frame. I want these 2 frames
> > >>> to stay on every web page and the 3rd frame to be the one that
> > >>> changes according to the navigational menu . How do I set the
> > >>> frames 1 & 2 to stay on each page without having to create them on
> > >>> each page?
> > >>
> > >>
> > >> I choose Polesoft Lockspam to fight spam, and you?
> > >> http://www.polesoft.com/refer.html

> >
> >
> >

 
Reply With Quote
 
=?Utf-8?B?bWZhdm9y?=
Guest
Posts: n/a
 
      6th Jun 2005
Thanks Rob for letting me know this. Do you have any suggestions on what I
need to do on the top banner. Looking at both of my computers it looks fine.
What is making it do that? Also, what would you say is a good size for a
picture? I have resized that picture since you have looked at it, I think
and it is now 172KB.
.. I am learning. Where do I get this free program you are talking about.
I have been using paint shop photo album to resize my pictures.
Any suggestions would be greatly appreciated
Marion

"Rob Giordano (Crash Gordon®)" wrote:

> Only the top half of your top banner is visible to me...all I can see is Lady Hoyas and then just the tops of the letters of what I assume to be "fastpitch"
> ===
> You need to optimize your images (there aren't many yet) but the small image of Janet Oglesby is OVER 1.25 MEG...way too big.
>
> Download and use IrFanview (free program) to resize, crop, batch name, OPTIMIZE your images BEFORE you Import them into FP for use in your design...it'll save you a lot of work later.
>
>
> "mfavor" <(E-Mail Removed)> wrote in message news:FB58EFFB-8166-4015-86F7-(E-Mail Removed)...
> > One more thing. This may be a stupid question but I like I said I am new at
> > this. I see where is has that the brower doesn't support frames. IF it
> > didn't support frames why does it work? Is that for people whose browser
> > doesn't support frames? Just wondered why that was there.
> >
> > "Trevor L." wrote:
> >
> > > Marion
> > >
> > > This is your HTML
> > > <html>
> > > <head>
> > > <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
> > > <title>Harrison Fastpitch Homepage</title>
> > > </head>
> > > <frameset rows="190,*">
> > > <frame name="banner" scrolling="no" noresize target="contents"
> > > src="lady_hoyas_fastpitch1.htm">
> > > <frameset cols="191,*">
> > > <frame name="contents" target="_parent"
> > > src="carl_harrison_high_school_4500_d1.htm" scrolling="auto" noresize>
> > > <frame name="main" src="new_page_4.htm" scrolling="auto">
> > > </frameset>
> > > <noframes>
> > > <body>
> > > <p>This page uses frames, but your browser doesn't support them.</p>
> > > </body>
> > > </noframes>
> > > </frameset>
> > >

> > <script language="JavaScript">
> > <!--
> >
> > window.open = SymRealWinOpen;
> >
> > //-->
> > </script>
> >
> >

<script language="JavaScript">
<!--

window.open = SymRealWinOpen;

//-->
</script>

</html>
> > >
> > > I would rewrite as this
> > >
> > > <html>
> > > <head>
> > > <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
> > > <title>Harrison Fastpitch Homepage</title>
> > > </head>
> > >
> > > <frameset rows="190,*">
> > > <frame name="banner" scrolling="no" noresize="noresize"
> > > src="lady_hoyas_fastpitch1.htm">
> > > <frameset cols="191,*">
> > > <frame name="contents"
> > > src="carl_harrison_high_school_4500_d1.htm" scrolling="auto"
> > > noresize="noresize">
> > > <frame name="main" src="new_page_4.htm" scrolling="auto">
> > > </frameset>
> > > <noframes> <p>This page uses frames, but your browser doesn't support
> > > them.</p> </noframes>
> > > </frameset>
> > >
> > >

> > <script language="JavaScript">
> > <!--
> >
> > window.open = SymRealWinOpen;
> >
> > //-->
> > </script>
> >
> >

<script language="JavaScript">
<!--

window.open = SymRealWinOpen;

//-->
</script>

</html>
> > >
> > > This is little different, just that:
> > > 1. <body></body> tags aren't needed inside <noframes></noframes>
> > > 2. I have removed target="..." as I don't know what purpose these serve. I
> > > omit them in my code with no harm done.
> > > 3. The correct syntax of noresize is as shown, although it doesn't cause an
> > > error.
> > >
> > > In your menu code you need to use target="main"
> > >
> > > I notice hovever, this code in the <head> section
> > > <base target="main">
> > > Unfortunately, I haven't much experience in the use of the base tag
> > > I would have written
> > > <a href="Harrison%20Fastpitch%20Homepage.htm" target="main"> and similarly
> > > for other <a href> tags
> > >
> > > According to http://www.w3schools.com/tags/tag_base.asp, target="main" (or a
> > > named frame) is not an option.
> > > But, if it works for you then great.
> > >
> > > I have checked out you site and it seems to work as you want, so really
> > > there is nothing change.
> > > :-)
> > > --
> > > Good Luck,
> > > Trevor L.
> > > Website: http://tandcl.homemail.com.au
> > >
> > > mfavor wrote:
> > > > Ok Trevor, thanks so much for the help. Since I am new to frontpage
> > > > and new to creating websites, can you please tell me where exactly do
> > > > I put this info you gave me? Thanks! If you need to look at my
> > > > website, it is www.harrisonfastpitch.com
> > > > Marion
> > > >
> > > > "Trevor L." wrote:
> > > >
> > > >> I do it this way
> > > >>
> > > >> <frameset rows="78,*">
> > > >> <noframes>
> > > >> To view this document, you need a frames-compatible browser such as
> > > >> Netscape 2.0 and above.
> > > >> </noframes>
> > > >> <frame src="heading.html" name="heading" scrolling="no"
> > > >> noresize="noresize">
> > > >> <frameset cols="145,*">
> > > >> <frame src="sidebar.html" name="sidebar" scrolling="yes"
> > > >> noresize="noresize">
> > > >> <frame src="index_main.html" name="index_main" scrolling="yes"
> > > >> noresize="noresize">
> > > >> </frameset>
> > > >> </frameset>
> > > >>
> > > >> index_main is the frame that varies. The others stay the same.
> > > >>
> > > >> To vary the contents of index_main, your side menu should have links
> > > >> like this:
> > > >> <a href="about.html" target="index_main">
> > > >> <a href="album.html" target="index_main">
> > > >>
> > > >> etc.
> > > >> --
> > > >> Cheers,
> > > >> Trevor L.
> > > >> Website: http://tandcl.homemail.com.au
> > > >>
> > > >> mfavor wrote:
> > > >>> I have created a web page with 3 frames, one being a navigational
> > > >>> frame (with links to other web pages) on the side with a menu. Then
> > > >>> I have a banner at the top as another frame. I want these 2 frames
> > > >>> to stay on every web page and the 3rd frame to be the one that
> > > >>> changes according to the navigational menu . How do I set the
> > > >>> frames 1 & 2 to stay on each page without having to create them on
> > > >>> each page?
> > > >>
> > > >>
> > > >> I choose Polesoft Lockspam to fight spam, and you?
> > > >> http://www.polesoft.com/refer.html
> > >
> > >
> > >

>

 
Reply With Quote
 
=?Utf-8?B?bWZhdm9y?=
Guest
Posts: n/a
 
      6th Jun 2005
If you would, look at this other website I work on. www.wcgsoftball.com I
did not set it up. Someone else did and I am trying to figure out if they
used frames. I need to fix the left menu because some people are unable to
read all of the menu. Do you have any suggestions for that? I had thought
about putting in a scroll bar. How would I do that?
Thanks!
Marion

"Rob Giordano (Crash Gordon®)" wrote:

> Only the top half of your top banner is visible to me...all I can see is Lady Hoyas and then just the tops of the letters of what I assume to be "fastpitch"
> ===
> You need to optimize your images (there aren't many yet) but the small image of Janet Oglesby is OVER 1.25 MEG...way too big.
>
> Download and use IrFanview (free program) to resize, crop, batch name, OPTIMIZE your images BEFORE you Import them into FP for use in your design...it'll save you a lot of work later.
>
>
> "mfavor" <(E-Mail Removed)> wrote in message news:FB58EFFB-8166-4015-86F7-(E-Mail Removed)...
> > One more thing. This may be a stupid question but I like I said I am new at
> > this. I see where is has that the brower doesn't support frames. IF it
> > didn't support frames why does it work? Is that for people whose browser
> > doesn't support frames? Just wondered why that was there.
> >
> > "Trevor L." wrote:
> >
> > > Marion
> > >
> > > This is your HTML
> > > <html>
> > > <head>
> > > <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
> > > <title>Harrison Fastpitch Homepage</title>
> > > </head>
> > > <frameset rows="190,*">
> > > <frame name="banner" scrolling="no" noresize target="contents"
> > > src="lady_hoyas_fastpitch1.htm">
> > > <frameset cols="191,*">
> > > <frame name="contents" target="_parent"
> > > src="carl_harrison_high_school_4500_d1.htm" scrolling="auto" noresize>
> > > <frame name="main" src="new_page_4.htm" scrolling="auto">
> > > </frameset>
> > > <noframes>
> > > <body>
> > > <p>This page uses frames, but your browser doesn't support them.</p>
> > > </body>
> > > </noframes>
> > > </frameset>
> > >

> > <script language="JavaScript">
> > <!--
> >
> > window.open = SymRealWinOpen;
> >
> > //-->
> > </script>
> >
> >

<script language="JavaScript">
<!--

window.open = SymRealWinOpen;

//-->
</script>

</html>
> > >
> > > I would rewrite as this
> > >
> > > <html>
> > > <head>
> > > <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
> > > <title>Harrison Fastpitch Homepage</title>
> > > </head>
> > >
> > > <frameset rows="190,*">
> > > <frame name="banner" scrolling="no" noresize="noresize"
> > > src="lady_hoyas_fastpitch1.htm">
> > > <frameset cols="191,*">
> > > <frame name="contents"
> > > src="carl_harrison_high_school_4500_d1.htm" scrolling="auto"
> > > noresize="noresize">
> > > <frame name="main" src="new_page_4.htm" scrolling="auto">
> > > </frameset>
> > > <noframes> <p>This page uses frames, but your browser doesn't support
> > > them.</p> </noframes>
> > > </frameset>
> > >
> > >

> > <script language="JavaScript">
> > <!--
> >
> > window.open = SymRealWinOpen;
> >
> > //-->
> > </script>
> >
> >

<script language="JavaScript">
<!--

window.open = SymRealWinOpen;

//-->
</script>

</html>
> > >
> > > This is little different, just that:
> > > 1. <body></body> tags aren't needed inside <noframes></noframes>
> > > 2. I have removed target="..." as I don't know what purpose these serve. I
> > > omit them in my code with no harm done.
> > > 3. The correct syntax of noresize is as shown, although it doesn't cause an
> > > error.
> > >
> > > In your menu code you need to use target="main"
> > >
> > > I notice hovever, this code in the <head> section
> > > <base target="main">
> > > Unfortunately, I haven't much experience in the use of the base tag
> > > I would have written
> > > <a href="Harrison%20Fastpitch%20Homepage.htm" target="main"> and similarly
> > > for other <a href> tags
> > >
> > > According to http://www.w3schools.com/tags/tag_base.asp, target="main" (or a
> > > named frame) is not an option.
> > > But, if it works for you then great.
> > >
> > > I have checked out you site and it seems to work as you want, so really
> > > there is nothing change.
> > > :-)
> > > --
> > > Good Luck,
> > > Trevor L.
> > > Website: http://tandcl.homemail.com.au
> > >
> > > mfavor wrote:
> > > > Ok Trevor, thanks so much for the help. Since I am new to frontpage
> > > > and new to creating websites, can you please tell me where exactly do
> > > > I put this info you gave me? Thanks! If you need to look at my
> > > > website, it is www.harrisonfastpitch.com
> > > > Marion
> > > >
> > > > "Trevor L." wrote:
> > > >
> > > >> I do it this way
> > > >>
> > > >> <frameset rows="78,*">
> > > >> <noframes>
> > > >> To view this document, you need a frames-compatible browser such as
> > > >> Netscape 2.0 and above.
> > > >> </noframes>
> > > >> <frame src="heading.html" name="heading" scrolling="no"
> > > >> noresize="noresize">
> > > >> <frameset cols="145,*">
> > > >> <frame src="sidebar.html" name="sidebar" scrolling="yes"
> > > >> noresize="noresize">
> > > >> <frame src="index_main.html" name="index_main" scrolling="yes"
> > > >> noresize="noresize">
> > > >> </frameset>
> > > >> </frameset>
> > > >>
> > > >> index_main is the frame that varies. The others stay the same.
> > > >>
> > > >> To vary the contents of index_main, your side menu should have links
> > > >> like this:
> > > >> <a href="about.html" target="index_main">
> > > >> <a href="album.html" target="index_main">
> > > >>
> > > >> etc.
> > > >> --
> > > >> Cheers,
> > > >> Trevor L.
> > > >> Website: http://tandcl.homemail.com.au
> > > >>
> > > >> mfavor wrote:
> > > >>> I have created a web page with 3 frames, one being a navigational
> > > >>> frame (with links to other web pages) on the side with a menu. Then
> > > >>> I have a banner at the top as another frame. I want these 2 frames
> > > >>> to stay on every web page and the 3rd frame to be the one that
> > > >>> changes according to the navigational menu . How do I set the
> > > >>> frames 1 & 2 to stay on each page without having to create them on
> > > >>> each page?
> > > >>
> > > >>
> > > >> I choose Polesoft Lockspam to fight spam, and you?
> > > >> http://www.polesoft.com/refer.html
> > >
> > >
> > >

>

 
Reply With Quote
 
=?Windows-1252?Q?Rob_Giordano_\=28Crash_Gordon=AE\
Guest
Posts: n/a
 
      7th Jun 2005
172kb is still WAY too big...that little image should optimize to about 20k and still look fine.

IrFanview: http://www.irfanview.com/

Do you really want to be using Frames for your web? From what I see, imo, you really don't need Frames and it will make your life more complicated down the road. Try bookmarking your site, then use the bookmark. Frames have their place but there are lots of things to overcome and you need to appreciate and be prepared.



"mfavor" <(E-Mail Removed)> wrote in message news:55F0F41A-9785-41B9-91F1-(E-Mail Removed)...
> Thanks Rob for letting me know this. Do you have any suggestions on what I
> need to do on the top banner. Looking at both of my computers it looks fine.
> What is making it do that? Also, what would you say is a good size for a
> picture? I have resized that picture since you have looked at it, I think
> and it is now 172KB.
> . I am learning. Where do I get this free program you are talking about.
> I have been using paint shop photo album to resize my pictures.
> Any suggestions would be greatly appreciated
> Marion
>
> "Rob Giordano (Crash Gordon®)" wrote:
>
> > Only the top half of your top banner is visible to me...all I can see is Lady Hoyas and then just the tops of the letters of what I assume to be "fastpitch"
> > ===
> > You need to optimize your images (there aren't many yet) but the small image of Janet Oglesby is OVER 1.25 MEG...way too big.
> >
> > Download and use IrFanview (free program) to resize, crop, batch name, OPTIMIZE your images BEFORE you Import them into FP for use in your design...it'll save you a lot of work later.
> >
> >
> > "mfavor" <(E-Mail Removed)> wrote in message news:FB58EFFB-8166-4015-86F7-(E-Mail Removed)...
> > > One more thing. This may be a stupid question but I like I said I am new at
> > > this. I see where is has that the brower doesn't support frames. IF it
> > > didn't support frames why does it work? Is that for people whose browser
> > > doesn't support frames? Just wondered why that was there.
> > >
> > > "Trevor L." wrote:
> > >
> > > > Marion
> > > >
> > > > This is your HTML
> > > > <html>
> > > > <head>
> > > > <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
> > > > <title>Harrison Fastpitch Homepage</title>
> > > > </head>
> > > > <frameset rows="190,*">
> > > > <frame name="banner" scrolling="no" noresize target="contents"
> > > > src="lady_hoyas_fastpitch1.htm">
> > > > <frameset cols="191,*">
> > > > <frame name="contents" target="_parent"
> > > > src="carl_harrison_high_school_4500_d1.htm" scrolling="auto" noresize>
> > > > <frame name="main" src="new_page_4.htm" scrolling="auto">
> > > > </frameset>
> > > > <noframes>
> > > > <body>
> > > > <p>This page uses frames, but your browser doesn't support them.</p>
> > > > </body>
> > > > </noframes>
> > > > </frameset>
> > > >
> > > <script language="JavaScript">
> > > <!--
> > >
> > > window.open = SymRealWinOpen;
> > >
> > > //-->
> > > </script>
> > >
> > >

> <script language="JavaScript">
> <!--
>
> window.open = SymRealWinOpen;
>
> //-->
> </script>
>
> </html>
> > > >
> > > > I would rewrite as this
> > > >
> > > > <html>
> > > > <head>
> > > > <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
> > > > <title>Harrison Fastpitch Homepage</title>
> > > > </head>
> > > >
> > > > <frameset rows="190,*">
> > > > <frame name="banner" scrolling="no" noresize="noresize"
> > > > src="lady_hoyas_fastpitch1.htm">
> > > > <frameset cols="191,*">
> > > > <frame name="contents"
> > > > src="carl_harrison_high_school_4500_d1.htm" scrolling="auto"
> > > > noresize="noresize">
> > > > <frame name="main" src="new_page_4.htm" scrolling="auto">
> > > > </frameset>
> > > > <noframes> <p>This page uses frames, but your browser doesn't support
> > > > them.</p> </noframes>
> > > > </frameset>
> > > >
> > > >
> > > <script language="JavaScript">
> > > <!--
> > >
> > > window.open = SymRealWinOpen;
> > >
> > > //-->
> > > </script>
> > >
> > >

> <script language="JavaScript">
> <!--
>
> window.open = SymRealWinOpen;
>
> //-->
> </script>
>
> </html>
> > > >
> > > > This is little different, just that:
> > > > 1. <body></body> tags aren't needed inside <noframes></noframes>
> > > > 2. I have removed target="..." as I don't know what purpose these serve. I
> > > > omit them in my code with no harm done.
> > > > 3. The correct syntax of noresize is as shown, although it doesn't cause an
> > > > error.
> > > >
> > > > In your menu code you need to use target="main"
> > > >
> > > > I notice hovever, this code in the <head> section
> > > > <base target="main">
> > > > Unfortunately, I haven't much experience in the use of the base tag
> > > > I would have written
> > > > <a href="Harrison%20Fastpitch%20Homepage.htm" target="main"> and similarly
> > > > for other <a href> tags
> > > >
> > > > According to http://www.w3schools.com/tags/tag_base.asp, target="main" (or a
> > > > named frame) is not an option.
> > > > But, if it works for you then great.
> > > >
> > > > I have checked out you site and it seems to work as you want, so really
> > > > there is nothing change.
> > > > :-)
> > > > --
> > > > Good Luck,
> > > > Trevor L.
> > > > Website: http://tandcl.homemail.com.au
> > > >
> > > > mfavor wrote:
> > > > > Ok Trevor, thanks so much for the help. Since I am new to frontpage
> > > > > and new to creating websites, can you please tell me where exactly do
> > > > > I put this info you gave me? Thanks! If you need to look at my
> > > > > website, it is www.harrisonfastpitch.com
> > > > > Marion
> > > > >
> > > > > "Trevor L." wrote:
> > > > >
> > > > >> I do it this way
> > > > >>
> > > > >> <frameset rows="78,*">
> > > > >> <noframes>
> > > > >> To view this document, you need a frames-compatible browser such as
> > > > >> Netscape 2.0 and above.
> > > > >> </noframes>
> > > > >> <frame src="heading.html" name="heading" scrolling="no"
> > > > >> noresize="noresize">
> > > > >> <frameset cols="145,*">
> > > > >> <frame src="sidebar.html" name="sidebar" scrolling="yes"
> > > > >> noresize="noresize">
> > > > >> <frame src="index_main.html" name="index_main" scrolling="yes"
> > > > >> noresize="noresize">
> > > > >> </frameset>
> > > > >> </frameset>
> > > > >>
> > > > >> index_main is the frame that varies. The others stay the same.
> > > > >>
> > > > >> To vary the contents of index_main, your side menu should have links
> > > > >> like this:
> > > > >> <a href="about.html" target="index_main">
> > > > >> <a href="album.html" target="index_main">
> > > > >>
> > > > >> etc.
> > > > >> --
> > > > >> Cheers,
> > > > >> Trevor L.
> > > > >> Website: http://tandcl.homemail.com.au
> > > > >>
> > > > >> mfavor wrote:
> > > > >>> I have created a web page with 3 frames, one being a navigational
> > > > >>> frame (with links to other web pages) on the side with a menu. Then
> > > > >>> I have a banner at the top as another frame. I want these 2 frames
> > > > >>> to stay on every web page and the 3rd frame to be the one that
> > > > >>> changes according to the navigational menu . How do I set the
> > > > >>> frames 1 & 2 to stay on each page without having to create them on
> > > > >>> each page?
> > > > >>
> > > > >>
> > > > >> I choose Polesoft Lockspam to fight spam, and you?
> > > > >> http://www.polesoft.com/refer.html
> > > >
> > > >
> > > >

> >

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
hyperlink to bookmark in 2nd frame makes 1st frame doc jump to page 1 NewbiePete Microsoft Word Document Management 4 11th Aug 2008 01:22 PM
how do i link from page to a specific page inside a frame page? =?Utf-8?B?U290aHBhdw==?= Microsoft Frontpage 13 13th Jul 2005 10:12 AM
A Frame Links Page To Wrong Frame =?Utf-8?B?U2VhbXVzIE0=?= Microsoft Frontpage 0 4th Jul 2005 03:42 AM
Missing navigational links on each page =?Utf-8?B?Q2hhcmRlYXV4?= Microsoft Frontpage 1 5th Nov 2004 12:09 AM
Re: How do I set up the hyperlink properties from a non-frame page to framed page to appear in the main frame of the framed page? Stefan B Rusynko Microsoft Frontpage 0 6th May 2004 04:13 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:01 PM.