I would like to change the colour of scroll bar. How can I do that?
A Andy Jan 26, 2006 #3 Andy said: I would like to change the colour of scroll bar. How can I do that? Click to expand... Sorry! I would like to change the colour of iframe scrollbar. It is that possible in front page. I'm a begginer in programing (read: playing with HTML codes). Thanks! Andy
Andy said: I would like to change the colour of scroll bar. How can I do that? Click to expand... Sorry! I would like to change the colour of iframe scrollbar. It is that possible in front page. I'm a begginer in programing (read: playing with HTML codes). Thanks! Andy
M Murray Jan 26, 2006 #4 Ys, it's possible. But you will only see it in IE on a PC. I don't bother with such things....
D DI Jan 26, 2006 #5 You can check this: http://www.codelifter.com/sbs55index.html Or use the code below <style type="text/css"> <!-- BODY { SCROLLBAR-FACE-COLOR: #000099; SCROLLBAR-HIGHLIGHT-COLOR: #3333FF; SCROLLBAR-SHADOW-COLOR: #000000; SCROLLBAR-3DLIGHT-COLOR: #009999; SCROLLBAR-ARROW-COLOR: #33FFFF; SCROLLBAR-TRACK-COLOR: #000099; SCROLLBAR-DARKSHADOW-COLOR: #666666; } --> </style>
You can check this: http://www.codelifter.com/sbs55index.html Or use the code below <style type="text/css"> <!-- BODY { SCROLLBAR-FACE-COLOR: #000099; SCROLLBAR-HIGHLIGHT-COLOR: #3333FF; SCROLLBAR-SHADOW-COLOR: #000000; SCROLLBAR-3DLIGHT-COLOR: #009999; SCROLLBAR-ARROW-COLOR: #33FFFF; SCROLLBAR-TRACK-COLOR: #000099; SCROLLBAR-DARKSHADOW-COLOR: #666666; } --> </style>
M Murray Jan 27, 2006 #6 That code will fail on a page rendered in Standards mode, since in Standards mode the scrollbar belongs to the <html> tag, not the <body> tag.
That code will fail on a page rendered in Standards mode, since in Standards mode the scrollbar belongs to the <html> tag, not the <body> tag.