|
-
Jan 18th, 2007, 04:43 PM
#1
Thread Starter
Sleep mode
[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.
-
Jan 18th, 2007, 06:39 PM
#2
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).
-
Jan 18th, 2007, 06:41 PM
#3
Thread Starter
Sleep mode
Re: [2005] colored scroll bars problem
I was trying it on I.E 6.0 (sp2) ....is it possible ?
-
Jan 18th, 2007, 06:44 PM
#4
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?
-
Jan 18th, 2007, 06:56 PM
#5
Thread Starter
Sleep mode
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..
-
Jan 18th, 2007, 06:58 PM
#6
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;}
-
Jan 18th, 2007, 07:01 PM
#7
Thread Starter
Sleep mode
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|