Changing the background of the calendar to be other than transparent

This is such a great plugin!

One thing that’s difficult for us is that the background of the calendar is transparent, which is causing issues with clashing theme colors. Is it possible to change the background?

1 Like

I was able to stumble my way through this, changing the background to the secondary color using this CSS. I am not good at any of this so it might not be the best way to do it, but it works!

#upcoming-events-calendar,
#category-events-calendar {
    background-color: var(--secondary);
    padding: 1em;
    border-radius: 8px;
    margin-bottom: 1em;
    margin-top: 1em;
}