2013-02-26 27 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; 
}