I moved the $css line. Thanks.
FYI: I'm using the Twenty Twelve Theme.
Let me know if this isn't the best way to show you the code:
<?php
/**
* Template Name: Calendar Page
* Description: A Page Template with code for the EasyPHPCalendar
*
* @package WordPress
* @subpackage Twenty_Eleven
* @since Twenty Eleven 1.0
*/
get_header(); ?>
<div id="primary">
<div id="sidebar-page-custom"><!-- custom class, makes styling comments easier -->
<div id="content" role="main">
<?php
require("calendar/calendar.php");
?></td>
<td width="50%" align="left">
<?php require("calendar/plugins/filter.php"); ?>
<?php $epcMultiCatShow=1; ?><?php require("calendar/plugins/legend.php"); ?>
<?php
// SHOW LISTINGS MODULE
$LIST=1;
$DF = "M jS, Y (D)";
$template="modern.php";
require("calendar/calendar.php");
?>
</div><!-- #content -->
</div><!-- #sidebar-page-custom -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
|