New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
Change the Style of the Today Cell in Month View
Updated over 6 months ago
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.
CSS
div.RadScheduler_[skinName] .rsMonthView .rsTodayCell
{
background-color: #CCFF00;
color: #000;
border: 1px solid #000;
}