bgColor of selector in combo

Hello,

I am changing the background color of the combo like so:

combo.DOMelem_input.className += “someDivClass”;

When I do this, the color behind the arrow selector/opener also changes. Is there a way to set the background color of the opener separately or do I need to use a new image for the combo_select .gif?

Thanks!

Hello,

z.DOMelem_input.className += " someDivClass"; changes style only of the input. The container class can be redefined using the following:

<style> #combo_zone div.dhx_combo_box{ background-color: #cc99ff; } </style>

Where combo_zone is of combo container:

var combo =new dhtmlXCombo(“combo_zone”,“alfa”,200);