CSS scrollbars and list boxes

I’m controlling the colour of my scrollbar using CSS which is working fine, I’m just wondering how come it only works for the main scrollbar and not for the scrollbar on a list box…

is there anyway I can change the scrollbar on this form object to be the same as the page bar?

What do you mean by a list box?

you mean a select?

Put the same code in the code for the listbox.
Ta-da

Tried pasting the same code in for the form scroll bar as I did for the main page scrollbar so the relavent portion of my css file looks like this…

body {
scrollbar-3dlight-color:#808080;
scrollbar-arrow-color:;
scrollbar-base-color:#ffffff;
scrollbar-darkshadow-color:#808080;
scrollbar-face-color:#d4d0c8;
scrollbar-highlight-color:#ffffff;
scrollbar-shadow-color:#d4d0c8
}

.form {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #ffffff;
text-decoration: none;
background-color: #cccccc;
scrollbar-3dlight-color:#808080;
scrollbar-arrow-color: #000000;
scrollbar-base-color:#ffffff;
scrollbar-darkshadow-color:#808080;
scrollbar-face-color:#d4d0c8;
scrollbar-highlight-color:#ffffff;
scrollbar-shadow-color:#d4d0c8
}

…however when I preview the **** thing it doesn’t seem to be working. Where am I going wrong people?!

Thanks