It’s currently not possible to change the placement of the filter, but that may be good new option to add. When I have time I will look into this.
You can add the following CSS to change the check mark into a X:
.pgc-calendar-filter input[type=checkbox] + label span:before {
content: "✗"
}
Hi,
With the new release it’s possible to show the filter at the top or bottom.
See this page for destails.
Best,
Michiel
Hi, the update is amazing.
I have one more question,
In the dayGridMonth view, is there a way to decrease the padding around the events so that more of the even text is viewed inside the box…
I tried figuring out what css class it is from the full calendar documentation but couldn’t
On my site I don’t have any padding, so I think it has to do something with the theme you are using.
If I look into the developer console, I see that the paddings for the daygridmonth view are set on the “fc-day-grid-event” class, so maybe you can do something like this:
.fc-day-grid-event {
padding:0;
}
But as I said, in my case this padding is already set to 0 and 1px.