I have css-code added for colouring the scrollbars in Internet Explorer, but it does not work since the update. :/
This is a part of my style.css:
/* Colors used in this style sheet:
Hex 000000 = RBG 0, 0, 0 = black
Hex 5F5F5F = RBG 95, 95, 95 = light black
Hex BDBEBD = RBG 189, 190, 189 = dark grey
Hex D1D7DC = RBG 209, 215, 220 = medium grey
Hex CCCCCC = RBG 204, 204, 204 = medium grey
Hex EFEFEF = RBG 239, 239, 239 = dark white
Hex FFFFFF = RBG 255, 255, 255 = white
Hex 005D8C = RBG 0, 93, 140 = dark blue
Hex 0033CC = RBG 0, 91, 104 = medium blue
Hex 0E72A4 = RBG 14, 114, 164 = light blue
*/
body {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
background : #000000 ;
color : #6600FF;
margin: 0px;
scrollbar-darkshadow-color: #330099;
scrollbar-face-color: #000000;
scrollbar-arrow-color: #990000;
scrollbar-track-color: #000000;
scrollbar-shadow-color: #330099;
scrollbar-highlight-color: #330099;
scrollbar-3dlight-color: #330099;
cursor: crosshair;
border: 5px ridge #330099;
}
}
The cross-hair works, but the scrollbars not. :(
I think you missed the base-color parameter.
Iconico offers a great help with these darn scrollbar colors. You can set up your colors, with sample scrollbars, and then just copy and paste the stuff into your css file. I use it all the time, and the code works every time. You have to access the site with IE, of course, because the code doesn't work on other browsers. Try:
http://www.iconico.com/CSSScrollbar/ (http://www.iconico.com/CSSScrollbar/)
I tried it and it's not working. Just like the original poster, I have updated the template and it seems to be not working at all, but on my other pages (not CP related), it is working fine...the problem is only occuring in Coppermine itself.
Try applying the scrollbar properties to the html tag instead of the body tag. Post a link to your site if you need details.
Thanks GauGau, it worked! Thank you so much!!! ;D