Change calendar block Month Year label size and color

Is there any way to to change the size and color of the Month and Year label on the calendar block? If I use a black background, you can’t see the label. I can’t find anywhere where I can change the style for this.

Hello,
here is a CSS which you can paste in your page settings → custom code → Footer section. Just need to replace the BLOCKID with your block ID, and the values of the color and size

<style>
#BLOCKID .month {
    color: YOUR-COLOR;
    font-size: YOUR-SIZE;
}
</style>
1 Like

Took me some time to get back to this and a little while to wrap my head around it, but once I did, it worked, thanks a bunch!

1 Like

I have a similar problem with the ‘Download’ button on list and table blocks. The words .csv or .xls are the same color as the background and I can’t find any way to change it.

2023-10-10