Results 1 to 2 of 2

Thread: Scroll bar colours

  1. #1
    Techi
    Guest

    Scroll bar colours

    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?

  2. #2
    Hyperactive Member PJB's Avatar
    Join Date
    Aug 2000
    Location
    dunno at the moment
    Posts
    302
    this will do it for a page:

    Code:
    <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

    Code:
    <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
    VB6.0 SP4
    Windows 2000
    I'm thinking of a number between

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width