I have a page with a few Comboboxes. Not all of them are required, but the ones that are I would like to make the back ground color yellow. I see that there is a property for BackColor and InputCssClass. That all well and good, but the input area is rendered within a <span class="rcbInner">. If I only change the BackColor and InputCssClass to be yellow the <span> around it is still white. So what I would like to to do is change the rcbInner only for certain controls. I have a radcombobox named cbCC_Month so I thought this might work:
#cbCC_Month rcbInner { background-color: yellow !important; }