here's whats in footer.php, there's no reference to the present contents there, I'm totally lost:
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(3) ) : ?>
<div class="box">
<h3>Recent Entry</h3>
<div class="box_content">
<?php get_archives('postbypost', 5); ?>
</div>
</div>
<div class="box">
<h3>Recent Comments</h3>
<div class="box_content">
<?php if(function_exists("get_recent_comments")) : ?>
<?php get_recent_comments(); ?>
<?php else : ?>
<?php mw_recent_comments(5, false, 35, 15, 35, 'all', '
- %author_name% in %title%
','d.m.y, H:i'); ?>
<?php endif; ?>
</div>
</div>
<div class="box">
<h3>Most Popular Posts</h3>
<div class="box_content">
<?php if(function_exists("akpc_most_popular")) : ?>
<?php akpc_most_popular(5); ?>
<?php else: ?>
Please install popularity contest plugin.
<?php endif; ?>
</div>
</div>
<div class="box">
<h3>About Author</h3>
<div class="box_content">
<?php echo stripslashes(get_option('techified_about_us')); ?>
</div>
</div>
<?php endif; ?>