Hi Guys,
Event Calendar uses a category, so the first thing that you will want to do is find out which category number it uses (you can find this in your admin section).
After you have the category number (let’s assume the number is 7) you will create a template for this category, the templates name will be:
category-7.php
Next you will create your template which might look similar to this:
<?php
/*
Template Name: Calendar
*/
?>
<?php get_header(); ?>
<!-- Whatever code is needed for your design here -->
<div id="calendar">
<h2>Monthly Caledar of Events</h2>
<?php ec3_get_calendar(); ?>
</div>
<div id="events">
<?php ec3_get_events(10); ?>
</div>
<?php get_footer(); ?>
The above code will need adjusting to suit your design needs but should serve as a good launch pad for what you are trying to set-up.
Hope this helps. ??