Full Calendar Plugin Custom CSS

Hello! I don’t know if this question was asked before, but I’m stuck with the Full Calendar Plugin appearance.

I just want to delete the Date and the Arrows. I want to replicate the calendar that is underneath. I really don’t like the appearance of the plugin but I love the functionality.

I have tried with custom CSS but I think I’m failing with the variables and ID?

Help, please

1 Like

Hey @cmallqui88,

Try this:

.fc .fc-toolbar-title {
    display: none !important;
}
button.fc-prev-button.fc-button.fc-button-primary {
    display: none !important;
}
button.fc-next-button.fc-button.fc-button-primary {
    display: none !important;
}

I think this might solve your problem :slight_smile:

This topic was automatically closed after 70 days. New replies are no longer allowed.