New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Change the Style of the Today Cell in Month View

In Month View the Today Cell has the rsTodayCell class applied to it. So changing the style of this cell is possible with the following CSS style:

-Note:- The selector is Skin-dependent. One should replace [skinName] with the name of the currently used Skin.


div.RadScheduler_[skinName] .rsMonthView .rsTodayCell
{
    background-color: #CCFF00;
    color: #000;
    border: 1px solid #000;
}  

In this article