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?
system
February 12, 2004, 12:45am
2
What do you mean by a list box?
you mean a select?
system
February 12, 2004, 1:12am
3
Put the same code in the code for the listbox.
Ta-da
system
February 12, 2004, 10:11am
4
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