PDA

View Full Version : changing color of the scrollbar in a frame


tesscm
07-21-2002, 08:51 AM
How do I change or customize the color of the scrollbar in a frame?

ACJavascript
07-21-2002, 04:50 PM
if your loading a page into the frame, then on the page that is being loaded put this


<style type="text/css">
<!--
BODY {scrollbar-hightlight-color:blue;scrollbar-arrow-color:red;scrollbar-base-color:gold;}
-->
</style>


on whatever page is loaded - this code should automaticly put colors onto the scrollbar within that frame.

Hope this helps :D:D

tesscm
07-24-2002, 09:21 AM
ACJavascript, Thank you for your reply. It was very helpful.