PC Review
Forums
Newsgroups
Microsoft Word
Microsoft Frontpage
Scroll Bar Doesn't Display
Forums
Newsgroups
Microsoft Word
Microsoft Frontpage
Scroll Bar Doesn't Display
![]() |
Scroll Bar Doesn't Display |
|
|
Thread Tools | Rate Thread |
|
|
#1 |
|
Guest
Posts: n/a
|
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 |
|
|
|
#2 |
|
Guest
Posts: n/a
|
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 |
|
|
|
#3 |
|
Guest
Posts: n/a
|
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 > > > |
|
|
|
#4 |
|
Guest
Posts: n/a
|
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 > > > > > > |
|
|
|
#5 |
|
Guest
Posts: n/a
|
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 | > | > | > |
|
|
|
#6 |
|
Guest
Posts: n/a
|
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 > > > > > > > > > > > > |
|
![]() |
|
| Thread Tools | |
| Rate This Thread | |
|
|

Main Page 

