- 15,799
Here is a simple CSS code that you put in between the <head> and </head> tags in your source code to change the colour of the IE scrollbar:
One thing has got me stumped though. I've been trying to put this code into an external CSS style sheet, so then I can just link to the style sheet instead of having to edit each scrollbar seperately. I've tried, and tried and tried with no luck. Alas, I come to GTP for help.
First of all, is it possible to put this in an external style sheet and if so, how may I go about doing this?
Code:
<style>
<!--
body {
scrollbar-face-color: #xxxxxx;
scrollbar-shadow-color: #xxxxxx;
scrollbar-highlight-color: #xxxxxx;
scrollbar-3dlight-color: #xxxxxx;
scrollbar-darkshadow-color: #xxxxxx;
scrollbar-track-color: #xxxxxx;
scrollbar-arrow-color: #xxxxxx;
}
-->
</style>
One thing has got me stumped though. I've been trying to put this code into an external CSS style sheet, so then I can just link to the style sheet instead of having to edit each scrollbar seperately. I've tried, and tried and tried with no luck. Alas, I come to GTP for help.
First of all, is it possible to put this in an external style sheet and if so, how may I go about doing this?