Thread: Scroll bars
Results 1 to 7 of 7
Related
-
scroll bars (and no, not colors) Forum: Javascript Forum
Replies: 3 -
Help im stuck with scroll bars Forum: HTML Forum
Replies: 3 -
Help on Scroll Bars... Forum: CSS Forum
Replies: 7 -
I dont want any scroll bars Forum: HTML Forum
Replies: 2 -
Scroll Bars Forum: CSS Forum
Replies: 11
-
11-10-2002, 02:23 PM #1
Scroll bars
:-)
How do ya change colors of the scroll bar? I've also seen some sites that have just an up arrow n down arrow.can that only be done if ya are usin frames..or..I am usin 'dreamweaver' n I have a black backgroun..so I was hopin ta change the scroll bar ta black with a red slide..as you have blue bar n black slide..ta the right here
Thanks for any info on this subject..
-
11-10-2002, 02:34 PM #2
Hey skuller
There have been many posts on this in the past, here are the search results
http://www.ahfb2000.com/webmaster_help_desk/search.php?s=&action=showresults&searchid=3405&sortby=lastpost&sortorder=descending
Dave
-
11-10-2002, 02:38 PM #3
try this post -
http://www.ahfb2000.com/webmaster_he...ght=scrollbarsIf one of our members helps you, please click theicon to add to their reputation!
No support via email or private message - use the forums!
Before you ask, have you Searched?
-
11-10-2002, 03:26 PM #4
Thanks!!!
Whoa..Great..Thanks for your help..it is much appreciated!!
-
11-10-2002, 11:49 PM #5
put this in between <head> and </head>
change the colors, mess around until u get an effect that u like. good luck
<style>
body
{
scrollbar-face-color:white;
scrollbar-highlight-color:yellow;
scrollbar-shadow-color:green;
scrollbar-arrow-color:blue;
scrollbar-track-color:black;
scrollbar-darkshadow-color:red;
}
Last edited by HTML; 11-11-2002 at 02:04 AM.
-
04-07-2004, 03:43 PM #6
hey doorknob it didn't work...
that sounds so funny because I insult my sister with that nickname...
Anywho, I used your codes, but the colors aren't appearing. Am I an idiot, or just a code error?
here's the code on my site so far:
<html>
<head>
<title>Otaku Training Camp</title></head>
<style type="text/css">
BODY {
scrollbar-face-color:white
scrollbar-highlight-color:38b0de
scrollbar-shadow-color:green
scrollbar-arrow-color:blue
scrollbar-track-color:2f4f4f
scrollbar-darkshadow-color:2f4f4f
}
</style>
<frameset cols=20%,80%>
<frame src=directory.html name=window-1>
<frame src=project1.html name=window-2>
</frameset>
-
04-07-2004, 05:23 PM #7
First, if your using hex codes you need a # symbol before the colours.
It also might be to do with the fact your are using a frameset. Try placing the code in directory.html and project1.html instead.If one of our members helps you, please click theicon to add to their reputation!
No support via email or private message - use the forums!
Before you ask, have you Searched?