Scroll Bar Look&Color?

admin

Administrator
Staff member
How do i change the look and color of the scroll bar on the right of the browser? I've heard that you use Javascripts, anyone know where i can d/l them? will they also work with I-frames? Check out my site and tell me what you think? Not done with it..could use some ideas! <!-- m --><a class="postlink" href="http://www.angelfire.com/nv2/lordoftherings/tck.htm">http://www.angelfire.com/nv2/lordoftherings/tck.htm</a><!-- m --><br />
<br />
Thanks!<!--content-->You have to use CSS. (Cascading Style Sheets) Just do a search for "scrollbar properties" on google or your preferred search engine. or just view the source of a page with changed scrollbar props and change the colors to suit.<br />
<br />
good luck<!--content-->put this between the head tags. change the #ff0000 to any color you want.<br />
<br />
<style> <br />
body{scrollbar-3d-light-color:#FF0000;<br />
scrollbar-arrow-color:#FF0000;<br />
scrollbar-Base-color:#000000;<br />
scrollbar-track-color: #000000;<br />
scrollbar-dark-shadow-color:#330000;<br />
scrollbar-face-color:#000000;<br />
scrollbar-highlight-color:#FF0000;<br />
scrollbar-shadow-color:#990000;<br />
<br />
<br />
</style><!--content-->goto Download <!--more-->s.com and Download <!--more--> fungus scrollbar. its a prog that u can change the color of the scollbar, see wat it looks like, then copy the code so u can put it in ur page. i think theres an online one too.....<!--content-->stupid question......is it possible to put text on your scollbar? i've never seen it before, so its prob not possible, but wat do i know, im just a newbie:rolleyes:<!--content-->not possible<!--content-->thought so......but think how kool that'd be:rolleyes:<!--content-->My Browser choked on this line:<br />
<meta http-equiv="Content-Type" content="text/html;"><br />
It should be:<br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
<br />
<br />
One of these as the very first line of the file before <head> would be a good idea:<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><br />
<br />
<br />
Ten minutes with a Text Editor could sort out the remaining problems listed at:<br />
<!-- m --><a class="postlink" href="http://validator.w3.org/check?uri=http%3A%2F%2Fwww.angelfire.com%2Fnv2%2Flordoftherings%2Ftck.htm&charset=iso-8859-1+%28Western+Europe%29&doctype=HTML+4.01+Transitional">http://validator.w3.org/check?uri=http% ... ansitional</a><!-- m --><br />
<br />
<script> needs type="text/javascript" added to it.<br />
<br />
<style> ideally needs type="text/css" added to it.<!--content-->how can your browser choke on that, you running some special browser nobody else has? that line is not even needed to run the page. only suggested to have it.<!--content-->If you are running a browser with standard USA options and no extra language or special character set support then you may not ever see a problem. Now take a browser that has character support for many other languages and typescripts, including various Asian DBCS and Shifted character sets, then the page might just end up displaying many of the characters in Thai script, rather then the intended ASCII. Sure looked a mess to me.<!--content-->ahh well that makes sense, I have a couple of languages but not the other stuff. I have never had a problem like that. :P<!--content-->
 
Back
Top