Do not colorize current date with Fullcalendar

Asked

Viewed 116 times

1

I have a schedule in fullcalendar, and I’m trying not to color today..

inserir a descrição da imagem aqui

note that it is in light yellow (Mon 1/4)

Any hint?

1 answer

2


You can use the code CSS below to overwrite this configuration:

.fc-today {
    background: #FFF !important;
    border: none !important;
    border-top: 1px solid #ddd !important;
    font-weight: bold;
} 

Remembering that the code should be below the file call CSS of Fullcalendar.

  • 1

    Had found in CSS . Fc td.Fc-Today { background-color: #ffffff ! Important;} but so it works out tb! Thanks

Browser other questions tagged

You are not signed in. Login or sign up in order to post.