Change the color of the fullcalendar link

1

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;
}
    
asked by anonymous 26.01.2017 / 16:34

1 answer

1

According to Murilo Gambôa's help, I was able to solve it as follows:

a.fc-more {
    margin: 1px 3px;
    font-size: .85em;
    cursor: pointer;
    text-decoration: none;
    color: #FFF;
}
    
26.01.2017 / 17:07