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 you have more than one event on the day, a link appears plus +2, where clicking appears the events of that day, but I need to put the blank link and I’m not getting.
I tried using the following code directly on the page and in the fullcalendar.css file, but only a: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;
}
uses the element inspector, discovers which are the classes of the links, or parent elements, and then passes your stylesheet to the last one to be requested (so that your style is processed over other styles passed by libraries), e.g.:
.calendar-day a{color:red;}
– Murilo Melo
the class used by them is
a.fc-more
on the link itself, I just checked– Murilo Melo
Perfect Murilo. It worked!! Thank you!
– user24136
answers the question itself with the method used, to avoid closing due to inactivity :)
– Murilo Melo