初心者です。
fullCalendarで祝日をgoogleから表示しているのですが、
「建国記念日」などの文字は表示させないで、日付だけ赤にしたいです。
$(document).ready(function() { $('#calendar').fullCalendar({ header: { left: 'prev,next today', center: 'title', right: 'month,listYear' }, displayEventTime: false, // don't show the time column in list view googleCalendarApiKey: 'XXX', eventSources: [ { googleCalendarId: 'japanese__ja@holiday.calendar.google.com', }, ] }); }); </script> <style> /* 日曜日 */ .fc-sun { color: #FF0066; } </style>
日曜日などは、styleで色を変えられますが
js内のgoogleCalendarId:に限定して.fcの色を変えるには
どうしたらよいでしょうか?
よろしくお願いします。

回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/02/13 07:03