Hi hoffcomp!
Yes, wp_footer() is in the footer.php (see below). I do have some custom php code that I wrote for a count down…
——————————————————————
<?php
/**
* The footer Template
*
* @package WordPress
* @subpackage minimatica
* @since Minimatica 1.0
*/
$day = 18 ; // Day of the countdown
$month = 2; // Month of the countdown
$year = 2012; // Year of the countdown
$hour = 16; // Hour of the day (east coast time)
$calculation = ((mktime ($hour,0,0,$month,$day,$year) – time(void))/3600);
$hours = (int)$calculation;
$days = (int)($hours/24);
?>
<footer id=”footer”>
<?php get_sidebar( ‘footer’ ); ?>
<nav id=”access” role=”navigation”>
<?php wp_nav_menu( array( ‘theme_location’ => ‘primary_nav’, ‘container_id’ => ‘primary-nav’, ‘container_class’ => ‘nav’, ‘fallback_cb’ => ‘minimatica_nav_menu’ ) ); ?>
</nav><!– #access –>
<nav>
<p><center> <?=$days?> days</span> until Our Wedding</center></p>
</nav>
</footer><!– #footer –>
</div><!– #wrapper –>
<?php wp_footer(); ?>
</body>
</html>
——————————————————————
Any other ideas?