Mike
|
| Posted: 08/18/2002, 5:33 AM |
|
I have created my own stylesheet and have modified all properties except the scroll bars on pages and text boxes which now look out of place. How are these items attributes modified?
|
|
|
 |
imranz
|
| Posted: 08/20/2002, 5:54 AM |
|
You have to drop in a BODY attribute into your CSS, since, technically, the scrollbar is owned by the BODY of the HTML document.
BODY
{
SCROLLBAR-FACE-COLOR: #435274;
SCROLLBAR-HIGHLIGHT-COLOR: #435274;
SCROLLBAR-SHADOW-COLOR: 8490B2;
SCROLLBAR-3DLIGHT-COLOR: 8490B2;
SCROLLBAR-ARROW-COLOR: #FFFFFF;
SCROLLBAR-TRACK-COLOR: 435274;
SCROLLBAR-DARKSHADOW-COLOR: 435274;
}
|
|
|
 |
|