Please excuse me if the question is very stupid, but I can't figure out how to display a footer in 2012 child theme :(
I did read many posts in order to find out, but most of them are how to add widget, copyright...etc.
I'm on step one-how to display footer? Later I'll think how to fill it up.
Please help!
Best regards,
Prolet
NB here is the code of my footer.php if it's of any help:
[please mark any posted code - http://codex.wordpress.org/Forum_Welcome#Posting_Code - some of the code below is corrupted]
<?php
/**
* The template for displaying the footer.
*
* Contains footer content and the closing of the
* #main and #page div elements.
*
* @package WordPress
* @subpackage Twenty_Twelve
* @since Twenty Twelve 1.0
*/
?>
</div><!-- #main .wrapper -->
<footer id="colophon" role="contentinfo">
<?php /*
<div class="footer-right">
<p>
<a href="http://www.ohsobelle.com/terms-and-conditions/ " title="Terms and conditions"><img src="http://www.ohsobelle.com/wp-content/themes/moi-me/images/icon-tc.png" title="Terms and conditions"></a>
<a href="http://www.ohsobelle.com/site-info/" title="Site info"><img src="http://www.ohsobelle.com/wp-content/themes/moi-me/images/icon-info.png" title="Site info"></a>
<a href="http://www.facebook.com/pages/Oh-so-Belle/121186791391428" title="Join us on facebook"><img src="http://www.ohsobelle.com/wp-content/themes/moi-me/images/icon-facebook.png" title="Join us on facebook"></a>
<a href="http://www.ohsobelle.com/contact-us/" title="Site info"><img src="http://www.ohsobelle.com/wp-content/themes/moi-me/images/icon-contact.png" title="Contact us"></a>
</p>
</div>
<div class="site-info">
<?php do_action( 'twentytwelve_credits' ); ?>
</div><!-- .site-info -->
*/
?>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>