Is there a way to minimize the width of a scrollbar in Frontpage?

I

Iris

I am doing a website with a lot of links on the lift and text on the right
side. So automatically the scroll bar shows up. But it looks terrible. Is
there a way that it is not shown but it works in the same way?
Would be great.
Thanks.

Iris
 
T

Thomas A. Rowe

No.

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

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

Dan

Put this between <head> and </head>

<style>
body {
background-color: #c0c0c0;
scrollbar-face-color: #c0c0c0;
scrollbar-highlight-color: #c0c0c0;
scrollbar-shadow-color: #c0c0c0;
scrollbar-3dlight-color: #c0c0c0;
scrollbar-arrow-color: #c0c0c0;
scrollbar-track-color: #c0c0c0;
scrollbar-darkshadow-color: #c0c0c0;
}
</style>

Problems are 1) you won't like the background color and 2) users won't know
there's a scroll bar to use. You could change the color values to match your
page to solve problem 1, but problem 2 will still exist.

HTH
 
J

John Cello

Iris:

Another solution you might want to consider is to use a table to lay out
your page. This way, you can control the width your content fills in a page.

Bear in mind that as the user resizes his\her browser window, once it is
smaller than the height\width you specified in your table dimensions, they
will get the applicable vertical \ horizontal scroll bar.

Hope this helps
 
Top