Forum Moderators: open
As far has the coloring of it, what browser are you using? I do beleive this is only supported by IE, not sure if this is your issue or not.
I'm sure you already know that "colored scrollbars" are specific to MSIE 5.5 and IE6 (in quirk mode). The MS propriety CSS is not recognized by any other browers. IE6 in Web Standards compliant mode also ignores the propriety CSS.
I've used this techinque many times in the past and still have a number of pages (iframe w/colored scrollbars) that employ this style.
It is very simple to use and apply to your iframe page:
<style type="text/css">
body {
scrollbar-face-color: #300;
scrollbar-shadow-color: #600;
scrollbar-highlight-color: #600;
scrollbar-3dlight-color: #600;
scrollbar-darkshadow-color: #600;
scrollbar-track-color: #300;
scrollbar-arrow-color: pink;
}
</style>
</head>
<body>
You can use external css or simply embed it in the <head> content.
Keep in mind though, that if you apply a standards inducing doctype (good idea!) your colored scrollbars will not be displayed (IE6).