PC Review Forums Newsgroups Microsoft Word Microsoft Frontpage Scroll Bar Doesn't Display

Reply

Scroll Bar Doesn't Display

 
Thread Tools Rate Thread
Old 15-07-2004, 06:39 AM   #1
=?Utf-8?B?Q00=?=
Guest
 
Posts: n/a
Default Scroll Bar Doesn't Display


I've got a frames page with three frames. I need scrollbars to be available "if needed" for two frames. The left frame does not show a scrollbar (even if I set it to "always"). The right frame displays a scrollbar when needed, as expected.

The html code for both frames sets scrollbar ="auto".

Does anyone know why one scroll bar would not display when the other one does? The navigation bar is in the left frame, and some users can't access all of it without the scrollbar.

I really appreciate anyone's help.

CM
  Reply With Quote
Old 15-07-2004, 09:04 AM   #2
Stefan B Rusynko
Guest
 
Posts: n/a
Default Re: Scroll Bar Doesn't Display

Provide a URL of the published site

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
_____________________________________________


"CM" <CM@discussions.microsoft.com> wrote in message news:BC0A30D8-BF1A-4D35-AC85-2487BBEA6B51@microsoft.com...
| I've got a frames page with three frames. I need scrollbars to be available "if needed" for two frames. The left frame does not
show a scrollbar (even if I set it to "always"). The right frame displays a scrollbar when needed, as expected.
|
| The html code for both frames sets scrollbar ="auto".
|
| Does anyone know why one scroll bar would not display when the other one does? The navigation bar is in the left frame, and some
users can't access all of it without the scrollbar.
|
| I really appreciate anyone's help.
|
| CM


  Reply With Quote
Old 15-07-2004, 05:36 PM   #3
=?Utf-8?B?Q00=?=
Guest
 
Posts: n/a
Default Re: Scroll Bar Doesn't Display

www.mcginnactuaries.com

"Stefan B Rusynko" wrote:

> Provide a URL of the published site
>
> --
>
> _____________________________________________
> SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
> "Warning - Using the F1 Key will not break anything!" (-;
> To find the best Newsgroup for FrontPage support see:
> http://www.net-sites.com/sitebuilder/newsgroups.asp
> _____________________________________________
>
>
> "CM" <CM@discussions.microsoft.com> wrote in message news:BC0A30D8-BF1A-4D35-AC85-2487BBEA6B51@microsoft.com...
> | I've got a frames page with three frames. I need scrollbars to be available "if needed" for two frames. The left frame does not
> show a scrollbar (even if I set it to "always"). The right frame displays a scrollbar when needed, as expected.
> |
> | The html code for both frames sets scrollbar ="auto".
> |
> | Does anyone know why one scroll bar would not display when the other one does? The navigation bar is in the left frame, and some
> users can't access all of it without the scrollbar.
> |
> | I really appreciate anyone's help.
> |
> | CM
>
>
>

  Reply With Quote
Old 15-07-2004, 05:42 PM   #4
Thomas A. Rowe
Guest
 
Posts: n/a
Default Re: Scroll Bar Doesn't Display

The left navigation frame is set to NEVER show a scrollbar.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)
http://www.ycoln-resources.com
FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
To assist you in getting the best answers for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp

"CM" <CM@discussions.microsoft.com> wrote in message
news:CD634868-686B-4970-B88D-29363153DB01@microsoft.com...
> www.mcginnactuaries.com
>
> "Stefan B Rusynko" wrote:
>
> > Provide a URL of the published site
> >
> > --
> >
> > _____________________________________________
> > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
> > "Warning - Using the F1 Key will not break anything!" (-;
> > To find the best Newsgroup for FrontPage support see:
> > http://www.net-sites.com/sitebuilder/newsgroups.asp
> > _____________________________________________
> >
> >
> > "CM" <CM@discussions.microsoft.com> wrote in message

news:BC0A30D8-BF1A-4D35-AC85-2487BBEA6B51@microsoft.com...
> > | I've got a frames page with three frames. I need scrollbars to be available "if needed" for

two frames. The left frame does not
> > show a scrollbar (even if I set it to "always"). The right frame displays a scrollbar when

needed, as expected.
> > |
> > | The html code for both frames sets scrollbar ="auto".
> > |
> > | Does anyone know why one scroll bar would not display when the other one does? The navigation

bar is in the left frame, and some
> > users can't access all of it without the scrollbar.
> > |
> > | I really appreciate anyone's help.
> > |
> > | CM
> >
> >
> >



  Reply With Quote
Old 15-07-2004, 05:43 PM   #5
Stefan B Rusynko
Guest
 
Posts: n/a
Default Re: Scroll Bar Doesn't Display


In your frames page you have

<frameset cols="209,75%" framespacing="0" border="0" frameborder="0">
<frame name="left" scrolling="no" noresize target="rtop" src="NavigationBar.html" marginwidth="12" marginheight="14" style="float:
right; position: relative; left: 25">
<frameset rows="17%,*">
<frame name="rtop" target="rbottom" src="HomePageTitleBar.html" scrolling="no" style="background-image:
url('Images/company_logo.gif'); background-repeat: repeat-x" noresize>
<frame name="rbottom" src="HomePageContents.shtml" scrolling="auto" noresize target="_self">
</frameset> <noframes>

Should be

<frameset cols="209,*" framespacing="0" border="0" frameborder="0">
<frame name="left" scrolling="auto" noresize target="rtop" src="NavigationBar.html" marginwidth="12" marginheight="14" >
<frameset rows="17%,*">
<frame name="rtop" target="rbottom" src="HomePageTitleBar.html" scrolling="no">
<frame name="rbottom" src="HomePageContents.shtml" scrolling="auto" noresize target="_self">
</frameset>
<noframes>

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
_____________________________________________


"CM" <CM@discussions.microsoft.com> wrote in message news:CD634868-686B-4970-B88D-29363153DB01@microsoft.com...
| www.mcginnactuaries.com
|
| "Stefan B Rusynko" wrote:
|
| > Provide a URL of the published site
| >
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > _____________________________________________
| >
| >
| > "CM" <CM@discussions.microsoft.com> wrote in message news:BC0A30D8-BF1A-4D35-AC85-2487BBEA6B51@microsoft.com...
| > | I've got a frames page with three frames. I need scrollbars to be available "if needed" for two frames. The left frame does
not
| > show a scrollbar (even if I set it to "always"). The right frame displays a scrollbar when needed, as expected.
| > |
| > | The html code for both frames sets scrollbar ="auto".
| > |
| > | Does anyone know why one scroll bar would not display when the other one does? The navigation bar is in the left frame, and
some
| > users can't access all of it without the scrollbar.
| > |
| > | I really appreciate anyone's help.
| > |
| > | CM
| >
| >
| >


  Reply With Quote
Old 15-07-2004, 05:59 PM   #6
=?Utf-8?B?Q00=?=
Guest
 
Posts: n/a
Default Re: Scroll Bar Doesn't Display

I didn't understand why you said this initially, but now I realize my updated page is not reaching the server. Thank you for your help.

CM

"Thomas A. Rowe" wrote:

> The left navigation frame is set to NEVER show a scrollbar.
>
> --
> ==============================================
> Thomas A. Rowe (Microsoft MVP - FrontPage)
> WEBMASTER Resources(tm)
> http://www.ycoln-resources.com
> FrontPage Resources, WebCircle, MS KB Quick Links, etc.
> ==============================================
> To assist you in getting the best answers for FrontPage support see:
> http://www.net-sites.com/sitebuilder/newsgroups.asp
>
> "CM" <CM@discussions.microsoft.com> wrote in message
> news:CD634868-686B-4970-B88D-29363153DB01@microsoft.com...
> > www.mcginnactuaries.com
> >
> > "Stefan B Rusynko" wrote:
> >
> > > Provide a URL of the published site
> > >
> > > --
> > >
> > > _____________________________________________
> > > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
> > > "Warning - Using the F1 Key will not break anything!" (-;
> > > To find the best Newsgroup for FrontPage support see:
> > > http://www.net-sites.com/sitebuilder/newsgroups.asp
> > > _____________________________________________
> > >
> > >
> > > "CM" <CM@discussions.microsoft.com> wrote in message

> news:BC0A30D8-BF1A-4D35-AC85-2487BBEA6B51@microsoft.com...
> > > | I've got a frames page with three frames. I need scrollbars to be available "if needed" for

> two frames. The left frame does not
> > > show a scrollbar (even if I set it to "always"). The right frame displays a scrollbar when

> needed, as expected.
> > > |
> > > | The html code for both frames sets scrollbar ="auto".
> > > |
> > > | Does anyone know why one scroll bar would not display when the other one does? The navigation

> bar is in the left frame, and some
> > > users can't access all of it without the scrollbar.
> > > |
> > > | I really appreciate anyone's help.
> > > |
> > > | CM
> > >
> > >
> > >

>
>
>

  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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off