this was already discuss in
http://wordpress.org/support/topic/remove-or-edit-info-in-footer?replies=28#post-4018588
It's easy:
just make a new funstions.php in your child theme and put this code
and make the changes that you wish.
<?php
// Remove old copyright text
add_action( 'init' , 'mh_remove_copy' , 15 );
function mh_remove_copy() {
remove_action( 'attitude_footer', 'attitude_footer_info', 30 );
}
// Add my own copyright text
add_action( 'attitude_footer' , 'mh_footer_info' , 30 );
function mh_footer_info() {
$output = '<div class="copyright">'.'Copyright © [the-year] [site-link] Powered by: SUPER MARTIANS FROM MARS! '.'</div><!-- .copyright -->';
echo do_shortcode( $output );
}