Steve Brant's Home Page (Test)


Link to the Family's Page

Anyone interested in my family can see a "few" pics at the following URL;

http://homepages.uel.ac.uk/S.Brant/family/ (Opens in a new browser window)

Changing Scrollbar Colours

Anyone interested in changing the colours of the scrollbar in their web pages, can use a variation of the following code as an "inline style", between either the "body" or "head" tags.

<STYLE TYPE="text/css">
BODY
{
scrollbar-face-color: #EAEAEA;
scrollbar-shadow-color: #EAEAEA;
scrollbar-highlight-color: #EAEAEA;
scrollbar-3dlight-color: #EAEAEA;
scrollbar-darkshadow-color: #697074;
scrollbar-track-color: #F7F7F7;
scrollbar-arrow-color: #666666;
}

</STYLE>

These style definitions will only work in later browsers, e.g. Internet Explorer 5.5 and later.

If you want ALL your pages to use the same scrollbar colours, you can define the styles for the scrollbar in your main styles definition file. Take a look at the text version of my styles.css file. The scrollbar definitions are in the body style (first line).


This image indicates what each style refers to in the scrollbar. Although I think you'd be making a bit of a mistake if you actually used such colours.

Obviously, as in the text example above, you can use "#000000" type definitions for colours as well as the browser-recognised named colours like "chocolate" or "black" etc., etc.