Results 1 to 7 of 7

Thread: [2005] colored scroll bars problem

  1. #1

    Thread Starter
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083

    Resolved [2005] colored scroll bars problem

    I'm using ASP.NET form, I'm using this code in the master page inside the head tag but it's not working!

    HTML Code:
    body {FONT-SIZE: 8pt; 
    COLOR: #000000; 
    background-color: #EEEEEE; 
    scrollbar-face-color: #EEEE99; 
    scrollbar-highlight-color: #DDDDDD; 
    scrollbar-shadow-color: #DEE3E7; 
    scrollbar-3dlight-color: #FF6600; 
    scrollbar-arrow-color: #006699; 
    scrollbar-track-color: #EFEFEF; 
    scrollbar-darkshadow-color: #98AAB1;}
    what's wrong !
    Last edited by Pirate; Jan 18th, 2007 at 07:02 PM.

  2. #2
    Frenzied Member Fishcake's Avatar
    Join Date
    Feb 2001
    Location
    Derby, UK
    Posts
    1,092

    Re: [2005] colored scroll bars problem

    What browser are you viewing it in? It is non-standard CSS and is specific to IE (and so should be avoided).

  3. #3

    Thread Starter
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083

    Re: [2005] colored scroll bars problem

    I was trying it on I.E 6.0 (sp2) ....is it possible ?

  4. #4
    Frenzied Member Fishcake's Avatar
    Join Date
    Feb 2001
    Location
    Derby, UK
    Posts
    1,092

    Re: [2005] colored scroll bars problem

    It should work in IE 6, there's a test page here with pretty much the same CSS are the scrollbars coloured in that?

  5. #5

    Thread Starter
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083

    Re: [2005] colored scroll bars problem

    I don't know what's wrong ! it's not working.I put the code in CSS file or even inside the head element in the master page..still no colors..

  6. #6
    Frenzied Member Fishcake's Avatar
    Join Date
    Feb 2001
    Location
    Derby, UK
    Posts
    1,092

    Re: [2005] colored scroll bars problem

    Ok, just had a play around you need to also apply the style to HTML as follows
    Code:
    body, html {FONT-SIZE: 8pt; 
    COLOR: #000000; 
    background-color: #EEEEEE; 
    scrollbar-face-color: #EEEE99; 
    scrollbar-highlight-color: #DDDDDD; 
    scrollbar-shadow-color: #DEE3E7; 
    scrollbar-3dlight-color: #FF6600; 
    scrollbar-arrow-color: #006699; 
    scrollbar-track-color: #EFEFEF; 
    scrollbar-darkshadow-color: #98AAB1;}

  7. #7

    Thread Starter
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083

    Re: [2005] colored scroll bars problem

    Thanks man...This works..

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