0

I need to change the font color of the calendar that appears after clicking on a Kendo datepicker widget. I have been able to change the font size, the background color, but I can't seem to be able to change the font color to display the calendar header (month), week days, or days of the month.

Is there a way to do it, or perhaps this is not a supported feature in Kendo Calendar right now?

Thanks in advance.

4

1 に答える 1

1

カスタムcssファイルまたはページヘッダースタイルで次を試すことができます

.k-calendar .k-header .k-link {
    color: #ff0000;
}

ブラウザー開発者ツール F12 を使用して、関連するスタイルを確認し、必要に応じて更新します。

于 2016-08-09T23:22:27.547 に答える