How change the background colour of the kendo ui datepicker using css
css, kendo-ui
Solution
Use:
.k-calendar .k-state-selected { background: blue; }
instead
Problem
Possible Duplicate: Kendo ui picker css issue I want to change the background colour of the selected state in kendo ui date picker. I have written the code like ``` k.datepicker .k-state-selected { background-color: blue; } ``` but the colour is not changing. How can i do that Regards, sri