Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Web Programming > JavaScript > BOOK: Beginning JavaScript
|
BOOK: Beginning JavaScript
This is the forum to discuss the Wrox book Beginning JavaScript by Paul Wilton; ISBN: 9780764544057
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: Beginning JavaScript section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 1st, 2004, 05:53 AM
Friend of Wrox
 
Join Date: Jun 2004
Posts: 245
Thanks: 0
Thanked 0 Times in 0 Posts
Default Custom Scroll Bar Colors in Broswer

I am very new to Javascript.

How do I customize the colors of the scroll bars in browsers like those shown in http://www.samyscamera.com/??
The color is brown and beige. It has black borders too.

Do I do this in Javascript or something else?

 
Old August 1st, 2004, 07:19 AM
Imar's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
Default

Hi there,

This is done with CSS, not JavaScript. Add the following code to your CSS file, or <style> element in your page:

body
{
  scrollbar-arrow-color: #990000;
  scrollbar-base-color: #000000;
  scrollbar-darkshadow-color: #EFECD4;
  scrollbar-face-color: #EFECD4;
  scrollbar-highlight-color: #EFECD4;
  scrollbar-track-color: #B09B76;
}

Be aware that this is not defined in a standard, so this does not work on all browsers. If you're using a strict doc-type, it won't even work on Internet Explorer.

Can you please not cross-post your messages in multiple forums? Your message will be read anyway.

Cheers,

Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
While typing this post, I was listening to: Where Fishes Go by Live (Track 7 from the album: The Distance to Here) What's This?





Similar Threads
Thread Thread Starter Forum Replies Last Post
How to control scroll bar BurhanKhan Javascript 3 August 26th, 2004 02:31 PM
How can I make two scroll bar to be the same one? Daniel_hn Visual C++ 1 September 16th, 2003 09:28 AM
css and scroll bar markhardiman HTML Code Clinic 3 July 18th, 2003 04:55 AM
Scroll Bar cooldude87801 BOOK: Beginning Java 2 0 June 18th, 2003 11:59 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.