Replies: 0
Hey all was wondering if one could tell me how to convert this so I can use it as just two columns versus 3. I am wanting to have 2 widget columns. What part do I have to edit and also will i have to edit the widget.php as well?
Thank you in advance!
</div><!– #main .site-main –>
<footer id=”colophon” class=”site-footer” role=”contentinfo”>
<div class=”footer_container”>
<div class=”section group”>
<div class=”col span_1_of_3″>
<?php if ( is_active_sidebar( ‘left_column’ ) && dynamic_sidebar(‘left_column’) ) : else : ?>
<div class=”widget”>
<?php echo ‘<h4>’ . __(‘Widget Ready’, ‘brasserie’) . ‘</h4>’; ?>
<?php echo ‘<p>’ . __(‘This left column is widget ready! Add one in the admin panel.’, ‘brasserie’) . ‘</p>’; ?>
</div>
<?php endif; ?>
</div>
<div class=”col span_1_of_3″>
<?php if ( is_active_sidebar( ‘center_column’ ) && dynamic_sidebar(‘center_column’) ) : else : ?>
<div class=”widget”>
<?php echo ‘<h4>’ . __(‘Widget Ready’, ‘brasserie’) . ‘</h4>’; ?>
<?php echo ‘<p>’ . __(‘This center column is widget ready! Add one in the admin panel.’, ‘brasserie’) . ‘</p>’; ?>
</div>
<?php endif; ?>
</div>
<div class=”col span_1_of_3″>
<?php if ( is_active_sidebar( ‘right_column’ ) && dynamic_sidebar(‘right_column’) ) : else : ?>
<div class=”widget”>
<?php echo ‘<h4>’ . __(‘Widget Ready’, ‘brasserie’) . ‘</h4>’; ?>
<?php echo ‘<p>’ . __(‘This right column is widget ready! Add one in the admin panel.’, ‘brasserie’) . ‘</p>’; ?>
</div>
<?php endif; ?>
</div>
</div>
</div><!– footer container –>
<div class=”site-info”>
Noble House Hawaiian 2016, All Rights Reserved
</div><!– .site-info –>
</footer><!– #colophon .site-footer –>
</div><!– #page .hfeed .site –>
</div><!– end of wrapper –>
<?php wp_footer(); ?>
</body>
</html>