I've read all the documents which I've been linked to but I have not come up with the correct syntax yet on how to do this. I am using ASP.Net AJAX 3rd Quarter 2009 suite and I'm trying to override the text of the default embedded CSS for the combobox. I look at the default skin for ComboBox and the styles I want to override are as follows:
.RadComboBox_Default,
.RadComboBox_Default .rcbInput,
.RadComboBoxDropDown_Default
{
font: 12px "Segoe UI", Arial, sans-serif;
color: #333;
}
I've tried puttig a div in front of them and putting them in my own CSS but it does not override the default. Can someone tell me how I'd need to write the css to override the above? Please help!! Thank you.
.RadComboBox_Default,
.RadComboBox_Default .rcbInput,
.RadComboBoxDropDown_Default
{
font: 12px "Segoe UI", Arial, sans-serif;
color: #333;
}
I've tried puttig a div in front of them and putting them in my own CSS but it does not override the default. Can someone tell me how I'd need to write the css to override the above? Please help!! Thank you.