Click to See Complete Forum and Search --> : No Scroll Bar


Carnage
02-04-2003, 01:25 PM
How do you remove the scroll bar from a page without frames? I want to disable scrolling and/or hide the scroll bar altogether.

CyCo
02-04-2003, 01:56 PM
<body scroll="no" border="no" style="border-style: groove; border-width: 0">

This works in IE 6.

zebedeus
02-04-2003, 09:25 PM
You can also give all elements of the scrollbar the same color as the background with CSS

body {
background-color:#ffffff;
scrollbar-face-color:#ffffff;
scrollbar-arrow-color:#ffffff;
scrollbar-track-color:#ffffff;
scrollbar-shadow-color:#ffffff;
scrollbar-highlight-color:#ffffff;
scrollbar-3dlight-color:#ffffff;
scrollbar-darkshadow-Color:#ffffff;
}

The scrollbar would be there though; only invisible
AND it only works in MSIE 6

Zebedeus

Stefan
02-05-2003, 06:23 AM
Originally posted by Carnage
How do you remove the scroll bar from a page

<body style="overflow:hidden;">

But have you considered what will happen if a visitor eg only has a 640 res screen and it can't fit all the info on your page?

Scrollbars are usually only placed on the screen if they are needed.