PDA

Click to See Complete Forum and Search --> : Scroll bar colours


Techi
May 2nd, 2001, 04:15 AM
Does anyone know how to change the colours of you scroll bars in frames in IE? I believe you have to use VB Script dont you?

PJB
May 2nd, 2001, 05:54 AM
this will do it for a page:


<STYLE TYPE="text/css">

BODY
{
scrollbar-base-color: orange;
scrollbar-arrow-color: green;
scrollbar-DarkShadow-Color: blue;
}
</STYLE>


and this will change colors of a textarea's scroll bars


<FORM>
<TEXTAREA COLS="10" ROWS="10"
STYLE="scrollbar-base-color:pink;scrollbar-arrow-color:purple;">
Text in the box
</TEXTAREA>
</FORM>


not sure if either of this methods can be adapted for frames or not, i'd suggest playing around with the first one