If you're trying to remove the info on the left side of the footer, that appears to be located in the footer.php. Look for the code immediately after:
<div class="copyright six columns">
In the original Leaf theme, the code that pulls the blog title is:
<?php esc_attr_e('©', 'leaf'); ?> <?php _e(date('Y')); ?> <a href="<?php echo home_url('/') ?>" title="<?php echo esc_attr(get_bloginfo('name', 'display')); ?>"><?php bloginfo('name'); ?></a>
You can change the title in Settings-->General-->Site Title. Or you can remove that code and replace it with what you want.