Now there are two ways to add this style to your pages. One of the
two add the style directly into html page using the method explained
in point 13.2.1. The second method is to created a external style sheet
where you have to link the style sheet see point 13.2.2
Style inserted directly into the page.
<style type="text/css">
BODY {
scrollbar-face-color: #DEE3E7;
scrollbar-highlight-color: #FFFFFF;
scrollbar-shadow-color: #DEE3E7;
scrollbar-3dlight-color: #D1D7DC;
scrollbar-arrow-color: #006699;
scrollbar-track-color: #EFEFEF;
scrollbar-darkshadow-color: #98AAB1;
}
</style>
Create a style sheet and call it style.css. Now paste the the code
here below into this style sheet. In your html pages you have make
link to tis style sheet. You have to place this link in the header
part of the html lik this:
<head>
<title>Your Title</title>
<link rel="stylesheet" href="/style.css" type="text/css">
</head>
The style sheet has to be in your root directory or any directory
below this directory. If you put the style sheet in a directory called
style you have to change the link in you header where you have placed
the style sheet.
Copy this part into your style sheet that you have created.
BODY {
scrollbar-face-color: #DEE3E7;
scrollbar-highlight-color: #FFFFFF;
scrollbar-shadow-color: #DEE3E7;
scrollbar-3dlight-color: #D1D7DC;
scrollbar-arrow-color: #006699;
scrollbar-track-color: #EFEFEF;
scrollbar-darkshadow-color: #98AAB1;
}