I am working on a website with a zabuto calendar that loads events through an ajax call. Each event on the calendar is currently represented by a yellow badge. I am wondering if there is a way to customize or change the color of these badges?
Below is the code snippet I am currently using:
<div id="my-calendar"></div>
<script type="application/javascript">
$(document).ready(function () {
$("#my-calendar").zabuto_calendar({
today: true,
language: "es",
ajax: {
url: "<?php echo base_url();?>index.php/client/build_date/",
modal: true
}
});
});
</script>
Any advice or suggestions would be greatly appreciated. Thank you in advance!