Colleagues.
I'm using FullCalendar for a client application, but I came across a challenge. In the image below (where it is marked with a yellow circle), when there is more than one event in the day, a plus +2 link appears, where clicking the events of that day appears, link in white and I'm not getting it.
I tried to use the code below directly on the page and in the fullcalendar.css file, but only the: hover worked:
a:link{
text-decoration: underline;
color: #FFF;
}
a:link, a:visited {
text-decoration: none
}
a:hover {
text-decoration: underline;
color: #FFF;
}
a:active {
text-decoration: none;
color: #FFF;
}