older theme candidate calendar glitch

I am not sure what is missing but I can no longer add events to the calendar that show up in photo format at the bottom in the Campaign section.

REMOVE COUNTDOWN

  1. open campaign.php

  2. remove this line:

  3. open style.css

  4. find these lines:

#campaign {height: 500px; background: url(‘images/campaign.png’) center bottom no-repeat; overflow: hidden;}
#campaignTrail {height: 325px; padding: 80px 20px 0 20px; border-bottom: 1px solid #cbc9cb;}

and change them to read:

#campaign {height: 440px; background: url(‘images/campaign.png’) center bottom no-repeat; overflow: hidden;}

#campaignTrail {height: 325px; padding: 80px 20px 0 20px;}

  1. open js/scripts and delete countdown.php
  2. open includes/help/tb_enqueue.php and remove these lines:

wp_register_script(‘countdown’, TEMPLATE_DIRECTORY . ‘/js/jquery.countdown.min.js’, array(‘jquery’), ‘1.5.11’, false);
wp_enqueue_script(‘countdown’);

NOTE: instructions in steps 5 and 6 are not required, but they are recommended, because they will speed up the site

=================================================================

REMOVE CAMPAIGN TRAIL

  1. open footer.php
  2. go to line 16 and completely remove it
<?php get_template_part('campaign'); ?>
  1. open style.css
  2. go to line 236:

#main {min-height: 765px; background: url(‘images/main.png’) center top scroll repeat-y; overflow: hidden;}

and change it to read:

#main {min-height: 765px; background: url(‘images/main.png’) center top scroll repeat-y; overflow: hidden; padding-bottom: 30px;}