You can try to search these css code :
#main_body textarea.textarea {
background: url("../../../images/shadow.gif") repeat-x scroll center top #FFFFFF;
border-color: #7C7C7C #C3C3C3 #DDDDDD;
border-style: solid;
border-width: 1px;
color: #333333;
font-family: "Lucida Grande",Tahoma,Arial,Verdana,sans-serif;
font-size: 100%;
margin: 0;
width: 99%;
}
#main_body select.select {
background: url("../../../images/shadow.gif") repeat-x scroll center top #FFFFFF;
border-color: #7C7C7C #C3C3C3 #DDDDDD;
border-style: solid;
border-width: 1px;
color: #333333;
font-size: 100%;
margin: 1px 0;
padding: 1px 0 0;
}
and change the "background" color like this :
#main_body textarea.textarea {
background: url("../../../images/shadow.gif") repeat-x scroll center top #696969;
border-color: #7C7C7C #C3C3C3 #DDDDDD;
border-style: solid;
border-width: 1px;
color: #333333;
font-family: "Lucida Grande",Tahoma,Arial,Verdana,sans-serif;
font-size: 100%;
margin: 0;
width: 99%;
}
#main_body select.select {
background: url("../../../images/shadow.gif") repeat-x scroll center top #696969;
border-color: #7C7C7C #C3C3C3 #DDDDDD;
border-style: solid;
border-width: 1px;
color: #333333;
font-size: 100%;
margin: 1px 0;
padding: 1px 0 0;
}
that would do it.
MachForm Support