How To Decode A Wordpress Theme Footer

There are a number of free wordpress themes but some of them has footer which is really annoying. I don't understand why designers code their free themes but it doesn't matter, i have a solution for you. This technique allow you to customize your wordpress theme footer.
Step by step ;
1> Open your index.php and find
<?php get_footer(); ?>
2> Place a HTML comment that you can easily recognize, before and after
Something like:
<!– footer content starts Here –>
<?php get_footer(); ?>
<!– footer content ends Here –> Read more