thanks jakob, i pasted the events.css code into my style.css (of the theme) and it does change the calendar style, which is cool....but my original problem is that the header image in the theme template has disappeared and only on the events calendar page of the site.
this problem began due to an adjustment in my theme's php template files... i needed to put an image
in front of the body background image,
but behind the container div,
so i added a <div id="top_header"> with an image and z-index: 2 - which works on every page of my site... except the events calendar page.
the problem is the top image in the header disappeared only on the events calendar page.
the code in my theme style.css is:
#top_header { height: 200px; width: 100%; margin-top: 0px; position: relative; background: url('img/top_banner.jpg') repeat-x top; z-index: 2;}
then in my theme/template php files if added the div before the php:
<div id="top_header">
<?php get_header(); ?>
<div id="container">
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h1><?php the_title(); ?></h1>
<small class="meta">
<span class="alignleft">
<?php the_time(__('F jS, Y', 'default')) ?> | <?php _e('By', 'default'); ?> <?php the_author() ?> | <?php _e('', '' ); the_category(', '); ?> | <?php the_tags('Topics: ', ' '); ?>
</span>
</small>
<div class="entry">
<?php the_content(); ?>
<?php wp_link_pages(array('before' => '<div class="page-link clearfix"><strong>Pages:</strong>', 'after' => '</div>', 'next_or_number' => 'number', 'pagelink' => '<span>%</span>')); ?>
</div>
<div class="postmetadata">
<p class="categories">
<?php _e('Posted in ', 'default' ); the_category(', '); ?>
</p>
<?php the_tags('<p class="tags">Topics: ', ' ', '</p>'); ?>
<p class="infos">
<?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
// Both Comments and Pings are open ?>
<?php _e('You can', 'default'); ?> <a href="#respond"><?php _e('leave a response', 'default'); ?></a> <?php _e(', or', 'default');?> <a>" rel="trackback nofollow"><?php _e('trackback', 'default'); ?></a> <?php _e('from your own site', 'default'); ?>.
<?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
// Only Pings are Open ?>
<?php _e('Responses are currently closed, but you can', 'default'); ?> <a> " rel="trackback nofollow"><?php _e('trackback', 'default'); ?></a> <?php _e('from your own site', 'default'); ?>.
<?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
// Comments are open, Pings are not ?>
<?php _e('You can skip to the end and leave a response. Pinging is currently not allowed.', 'default'); ?>
<?php } edit_post_link(__( 'Edit this entry', 'default' ),'','.'); ?>
</p>
</div>
</div>
<?php endwhile; else: ?>
<?php include (TEMPLATEPATH . "/missing.php"); ?>
<?php endif; ?>
</div><!-- #content -->
</div><!-- #container -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
</div>
hope someone can give me a hand... i don't know about the 265px margin affecting it either... since the other templated pages seem okay with it.
thank you in advance :)