All you need to do is add a little CSS to your calendar's settings!
- Go to Calendars and choose the calendar you'd like to modify.
- Go to Settings > Edit CSS.
- Add this line in the /* Full Calendar */ section:
.month-event-slot { height: 22px !important }
- Click Save CSS.
That's it! If you need to display a larger area, you can increase the height by multiples of 11px.
For example, to display 3 lines, I'd change the 22px to 33px.
All you need to do is add a little CSS to your calendar's settings!
- Go to Calendars and choose the calendar you'd like to modify.
- Go to Settings > Edit CSS.
- Add this line in the /* Full Calendar */ section:
Hiding the End Time: .month-etime { display:none; }
Hiding the Start Time: .month-stime { display:none; }
Hiding both: .month-stime, .month-etime { display: none; }
- Click Save CSS.
All you need to do is modify the API call slightly.
Note: This only works with event list widgets / API calls.
- Get the IDs of the calendars you want to add to the call. (Look at the Calendar Index table - left hand column.)
For this example, let's say our calendar IDs are 123, 124, and 125.
- Look at your API call's URL. Find the part of the URL that says &cid=123 (you may have a different number ;).
- Add the other calendar IDs separated by underscores. The final result will look something like this: &cid=123_124_125
The full URL will look something like this:
http://demo.libcal.com/api_events.php?iid=1&m=upc&cid=123_124_125&c=&d=&l=5
Absolutely - all you need to do is modify the API call slightly.
Note: This only works with event list widgets / API calls.
Simply add &simple=ul (for a bulleted list) or &simple=br (for a list separated by line breaks) to the end of the API URL (upcoming events, today's events, events this month, etc.).
Your API call will look something like this when you're finished
<link rel="stylesheet" type="text/css" href="http://springylib.libcal.com/css/api.css" />
<div id="api_upc_cid582_iid2"></div><script type="text/javascript" src="http://springylib.libcal.com/api_events.php?iid=2&m=upc&cid=582&c=&d=&l=5&context=object&format=js&simple=ul"></script>
Sure! All you need to do is modify the API call slightly.
Note: This only works with the "Events in the next month" API.
Simply add &months=x to the end of the API URL, replacing x with the number of months you'd like to display.
Your API call will look something like this when you're finished
<link rel="stylesheet" type="text/css" href="http://calendar.springshare.com/css/api.css" /><div id="api_month_cid112_iid3"></div><script type="text/javascript" src="http://calendar.springshare.com/api_events.php?iid=3&m=month&cid=112&c=&d=&context=object&format=js&months=3"> </script>
Since the CSS doesn't hold in print view (this is a browser issue - styling/positioning is lost when in print view), the best way to print a weekly view is by using the iCal subscription.
We are planning on making some changes to the system to make printing easier, so keep an eye on our blog for news!