PDA

View Full Version : Color/shape udjusting


Kevlar
07-24-2002, 09:34 PM
How do you change the color (and shape, if possible) of the scroll bar and the title bar? And how do I insert a favicon and title text by ONLY editing the CSS file?

Astro-Boy
07-25-2002, 01:13 AM
You can change the colour of the scrollbar using the following:

body {
scrollbar-face-color: buttonface;
scrollbar-highlight-color: white;
scrollbar-shadow-color: buttonface;
scrollbar-3dlight-color: buttonface;
scrollbar-arrow-color: buttonshadow;
scrollbar-track-color: silver;
scrollbar-darkshadow-color: buttonshadow;
scrollbar-base-color: buttonface;
}

I don't think it's possible to do any of the other things you're asking though.

- Mark

applesauce
07-25-2002, 02:58 PM
i agree. and why do you want to use css for the title and favicon, just out of curiosity?

redhead
07-28-2002, 09:18 PM
Scroll bar tutorial (http://www.javascriptkit.com/howto/scrollbarcolor.shtml)
favouites icon tutorial (http://www.javascriptkit.com/howto/customicon.shtml)
AFAIK, you cannot change the style of the title bar, but you could try animating it (http://www.dynamicdrive.com/dynamicindex11/animatedtitle.htm)

hope these links help:thumbsup:

boxer_1
07-28-2002, 09:26 PM
With regard to animating the 'Title Bar', here's another script for a continuous type-writer effect:

http://javascriptkit.com/script/script2/typetitle.shtml

Just another option worth a mention ;) .