2013-02-26 26 views
0

我在月视图中为星期日设置了背景图像,而且在标题中的“星期天”设置了相同的背景,而其他标题天则设置正确。我发现表格线程的css也有.fc-sun .fc-mon等,但我不知道如何从线程中删除这些类。我怎么解决这个问题 ?fc-sun的Fullcalendar背景图像

我有这个在我的fullcalendar.css:

.fc-widget-header{ 
background-color: #900; 
} 

.fc-sun { 
    background-image:url('../img/myImage.png'); 
    background-repeat:repeat-x; 
    background-repeat:repeat-y; 
} 

回答

1

元素选择添加到你的CSS,自从那天 “星期日” 报头(TH)和天体(TD)的FC-太阳级。这个解决方案应该适合你的情况

td.fc-sun { 
    background-image:url('../img/myImage.png'); 
    background-repeat:repeat-x; 
    background-repeat:repeat-y; 
}