Home Articles FAQs XREF Games Software Instant Books About Feedback Search Site-Map
irt.org logo

Q1555 How can I hide the scrollbars without disabling them?

irt.org | Knowledge Base | HTML | Q1555 [ previous next ]

Q1555 How can I hide the scrollbars without disabling them?

See the page creation/page scrolling tutorial at: http://www.htmlguru.com/

The following was submitted by Dan Souza

You can effectively hide the scrollbars by using CSS to make your scrollbar properties the same color as your page. However this will only work in IE because Netscape does not yet support Scrollbar attributes in CSS. For instance if your page background color is white which is #FFFFFF you would use:

<STYLE TYPE="text/css"><!--
/*Place this code between the <HEAD> and </HEAD> tags n your HTML document*/
/*Be sure to alter the color atributes to match the color of your page*/
BODY
{
Scrollbar-Base-Color: #FFFFFF;
Scrollbar-Face-Color: #FFFFFF;
Scrollbar-Shadow-Color: #FFFFFF;
Scrollbar-Darkshadow-Color: #FFFFFF;
Scrollbar-3Dlight-Color: #FFFFFF;
Scrollbar-Highlight-Color: #FFFFFF;
Scrollbar-Track-Color: #FFFFFF;
Scrollbar-Arrow-Color: #FFFFFF;
}
//--></STYLE>

Provide feedback ...
AddThis Social Bookmark Button

Provide feedback ... AddThis Social Bookmark Button


Last Updated: 6th July 2009. Maintained by: Martin Webb
irt.org liability, trademark, document use, privacy statement and software licensing rules apply.
Copyright © 1996-2009 irt.org, All Rights Reserved.