Delete line from footer?
I'd like to remove the dark gray & aqua lines from the footer on my site (keeping the white line):
http://www.bulletinboardwalk.com. Here is my footer code... what should I edit? Thanks!
<!-- FOOTER -->
<div class="footer">
<div class="footer_menu">
<div class="footer_menu_res">
<!-- <ul>
<li class="first"><a href="<?php echo get_option('home')?>"><?php _e('Home','cp'); ?></a></li>
<?php wp_list_pages('sort_column=menu_order&depth=1&titl e_li=&exclude='.get_option('cp_excluded_pages')); ?>
<?php if (get_option('cp_enable_blog') == 'yes') { ?>
<li><a href="<?php echo CP_BLOG_URL ?>"><?php echo get_cat_name(cp_get_blog_catid()); ?></a></li>
<?php } ?>
</ul> -->
<div class="clr"></div>
</div><!-- /footer_menu_res -->
</div><!-- /footer_menu -->
<div class="footer_main">
<div class="footer_main_res">
<div class="dotted">
<?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('sidebar_footer')) : else : ?> <!-- no dynamic sidebar so don't do anything --> <?php endif; ?>
<div class="clr"></div>
</div><!-- /dotted -->
<p>© <?php echo date_i18n('Y'); ?> <?php bloginfo('name'); ?>bulletinboardwalk.com. <?php _e('All Rights Reserved.', 'cp'); ?></p>
<!-- <?php if (get_option('cp_twitter_username')) : ?>
<a href="http://twitter.com/<?php echo get_option('cp_twitter_username'); ?>" target="_blank"><img src="<?php bloginfo('template_url'); ?>/images/twitter_bot.gif" width="42" height="50" alt="Twitter" class="twit" /></a>
<?php endif; ?> -->
<div class="right">
<!-- <p><a target="_blank" href="http://appthemes.com/themes/classipress/" title="Classified Ads Software"><?php _e('Classified Ads Software','cp'); ?></a> | <?php _e('Powered by','cp'); ?> <a target="_blank" href="http://www.wordpress.org/" title="WordPress">WordPress</a></p> -->
</div>
<div class="clr"></div>
</div><!-- /footer_main_res -->
</div><!-- /footer_main -->
<?php wp_footer(); ?>
</div><!-- /footer -->
</div><!-- /container -->
</body>
</html>