changing colors on scrollerbars

BlurOfSerenity

New Member
how do i do it?
i want to change the colors on the scrollerbars on my site to more of a red, but i am lost as to how to go about it :(

!pleH eM
 
Put this in your style sheet. :beerbang:

Code:
BODY {
	SCROLLBAR-BASE-COLOR: #800000;
}
 
Look for <style> in the HTML file and put those lines right after it. If there is no <style>, find <head> and put this stuff after it

Code:
<style type="text/css">
BODY {
	SCROLLBAR-BASE-COLOR: #800000;
}
</style>
 
Glad I helped

How come you have so many body tags?

Code:
<body bgcolor=#000000>
</head>

<body text=#FFFFFF> 
<body link=#FF4040>
<body vlink=#FF8080> 
<body alink=#FFC0C0>

Change that to just this:

Code:
</head>
<body bgcolor=#000000 text=#FFFFFF link=#FF4040 vlink=#FF8080 alink=#FFC0C0>
 
Back
Top