Hi,
My footer consists of a "copy footer" and a "content footer" just above it. The content footer is divided into three widget areas - footer 1, 2 & 3. The thing is that I don't need footer 2 & 3, I just want one. How can I remove or delete widget area 2 & 3? And by doing so, will this open up the whole width or space of the footer content? Not sure if that last part made sense. But basically, I'd like to use the whole "content footer" area for som content. As it is now, I can either put content to the left, middle or right. I want the top footer to be just one whole area, a single widget.
THANKS for all the help!!
Footer PHP
<div class="clear"></div>
<footer role="contentinfo" class="content">
<?php if ( is_active_sidebar('footer1') || is_active_sidebar('footer2') || is_active_sidebar('footer3') ): ?>
<div id="footer-widgets" class="clearfix content">
<div class="row">
<div id="footer1" class="sidebar four columns" role="complementary">
<?php if ( is_active_sidebar( 'footer1' ) ) : ?>
<?php dynamic_sidebar( 'footer1' ); ?>
<?php endif; ?>
</div>
<div id="footer2" class="sidebar four columns" role="complementary">
<?php if ( is_active_sidebar( 'footer2' ) ) : ?>
<?php dynamic_sidebar( 'footer2' ); ?>
<?php endif; ?>
</div>
<div id="footer3" class="sidebar four columns last" role="complementary">
<?php if ( is_active_sidebar( 'footer3' ) ) : ?>
<?php dynamic_sidebar( 'footer3' ); ?>
<?php endif; ?>
</div>
</div>
</div> <!-- end #footer widgets-->
<?php endif; ?>
<div id="footer-copy">
<div class="row">
<?php
echo apply_filters( 'qs_footer', of_get_option('qs_footer_text') );
?>
</div>
</div>
</footer> <!-- end footer -->
<!--[if lt IE 7 ]>
<script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js"></script>
<script>window.attachEvent('onload',function(){CFInstall.check({mode:'overlay'})})</script>
<![endif]-->
<?php include_once 'js/customjs.php'; ?>
<?php wp_footer(); // js scripts are inserted using this function ?>
</body>
</html>