Forum Moderators: not2easy
You can control the background colour of the select element using CSS:
select {
background: #ccc;
color: #F00;
font-weight: bold;
}
Here the background colour will be grey, however IE will not follow the text style (Gecko engined browsers will though).
The scrollbar on a select list is inherited from the users OS, and therefore cannot be coloured using CSS.
HTH