This:
Code:
<STYLE type="text/css">
BODY {scrollbar-3dlight-color:000000;
scrollbar-arrow-color:000000;
scrollbar-base-color:000000;
scrollbar-track-color:FFFFFF;
scrollbar-darkshadow-color:000000;
scrollbar-face-color:FFFFFF;
scrollbar-highlight-color:;
scrollbar-shadow-color:}
</STYLE>
belongs in the head and should be all lower case and must include the hash (#) prefix for hex colors, if no color value is given, best not to include the property at all:
Code:
<style type="text/css">
body {
scrollbar-3dlight-color:#000000;
scrollbar-arrow-color:#000000;
scrollbar-base-color:#000000;
scrollbar-track-color:#ffffff;
scrollbar-darkshadow-color:#000000;
scrollbar-face-color:#ffffff;
}
</style>
Sometimes, html should replace body as the selector.
Generally this kind of thing only works in IE anyway.
As for your other idea, there are many ways to go about it. An iframe might just be the most accessible unless you would be willing simply to have separate pages. If you use an iframe, the background could be on the iframe's content pages. Simply switching to another similar looking page is best and most in keeping with the subject of HTML which you have posted your message under.
Bookmarks