[Theme Simple Catch] Help with footer CSS please!
-
My website is http://wbbjj.com
I want to remove the part of the footer that says wordpress and simple catch. When I completely delete the footer section, the entire footer goes away and so does part of my header that contains plugin info.
I know a little bit of html but can follow instructions can anyone help?
here is my current CSS code in the footer section.
<?php
/**
* The template for displaying the footer.
*
* @package Catch Themes
* @subpackage Simple_Catch
* @since Simple Catch 1.0
*/
?>
<div id=”footer”>
<div class=”layout-978″>
<?php //Displaying footer logo ?>
<div class=”col7 copyright no-margin-left”>
<?php if( function_exists( ‘simplecatch_footerlogo’ ) ) :
simplecatch_footerlogo();
endif;
?><?php _e( ‘Copyright’, ‘simplecatch’ ); ?> © <?php echo date(“Y”); ?> <span><?php bloginfo(‘name’)?></span>. <?php _e( ‘All Rights Reserved.’, ‘simplecatch’ ); ?>
</div><!– .col7 –><?php do_action( ‘simplecatch_credits’ ); ?>
</div><!– .layout-978 –>
</div><!– #footer –>
<?php wp_footer(); ?>
</body>
</html>
The topic ‘[Theme Simple Catch] Help with footer CSS please!’ is closed to new replies.