Dropped down menu can be changed with:
<html>
<head>
<title>TEST</title>
<style type="text/css">
.select{
background-color: #CCCCCC;
border: 1px solid #000000;
color: #000000;
}
.option {
background-color: #00ff00;
color: #0000ff;
}
</style>
</head>
<body>
<select class="select">
<option>
<option class="option">boo
<option class="option">boo
</select>
</body>
</html>
Errors that are still in it, the top option either should not have the same class, or it will show in the not dropped down box as well. And you can't add a border in the dropped down box.
|