remove secondary widget

Discussion in 'BizWay WordPress Theme' started by blackdog2020liz, Dec 16, 2013.

  1. blackdog2020liz

    blackdog2020liz Member

    Joined:
    Dec 18, 2012
    Messages:
    264
    Likes Received:
    5
    Location:
    Western Australia
    How can I change the footer widget area to have 3 widgets centered across the page instead of 4?

    Many thanks
    Liz
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to sidebar-footer.php present in your theme directory and follow the instruction as shown in image given below

    2013-12-16_1306.png


    This will solve your issue.
     
  3. blackdog2020liz

    blackdog2020liz Member

    Joined:
    Dec 18, 2012
    Messages:
    264
    Likes Received:
    5
    Location:
    Western Australia
    Hi Gourac, my css looks like this.

    <?php if (inkthemes_get_option('inkthemes_twitter') != '') { ?>
    <!--Start Footer Wrapper-->
    <div class="footer-wrapper">
    <!--Start Wrapper-->
    <div class="container_24">
    <div class="grid_24">
    <div class="footer-top">
    <div class="grid_sub_8 sub_alpha">
    <div class="footer-top-inner1">
    <span><b>Social Links</b></span>
    <ul class="tt-wrapper">
    <?php if (inkthemes_get_option('inkthemes_facebook') != '') { ?>
    <li><a class="fb" href="<?php echo inkthemes_get_option('inkthemes_facebook'); ?>"><span>Facebook</span></a></li>
    <?php } ?>
    <li><a class="tw" href="<?php echo inkthemes_get_option('inkthemes_twitter'); ?>"><span>Twitter</span></a></li>
    <?php } ?>
    <?php if (inkthemes_get_option('inkthemes_rss') != '') { ?>
    <li><a class="rss" href="<?php echo inkthemes_get_option('inkthemes_rss'); ?>"><span>Rss</span></a></li>
    <?php } ?>
    <?php if (inkthemes_get_option('inkthemes_yahoo') != '') { ?>
    <li><a class="yh" href="<?php echo inkthemes_get_option('inkthemes_yahoo'); ?>"><span>Yahoo</span></a></li>
    <?php } ?>
    <?php if (inkthemes_get_option('inkthemes_Youtube') != '') { ?>
    <li><a class="yt" href="<?php echo inkthemes_get_option('inkthemes_Youtube'); ?>"><span>You Tube</span></a></li>
    <?php } ?>
    </ul>
    </div>
    </div>
    <div class="grid_sub_8 sub_middle">
    <div class="footer-top-inner2">
    <?php if (inkthemes_get_option('inkthemes_email_info') != '') { ?>
    <?php echo inkthemes_get_option('inkthemes_email_info'); ?>
    <?php } else { ?>
    <b>Email</b> - <a href="#">[email protected]</a>
    <?php } ?>
    </div>
    </div>
    <div class="grid_sub_8 sub_omega">
    <div class="footer-top-inner3">
    <?php if (inkthemes_get_option('inkthemes_call_info') != '') { ?>
    <?php echo inkthemes_get_option('inkthemes_call_info'); ?>
    <?php } else { ?>
    <b>Call Now</b> - 1234 -000 -548
    <?php } ?>
    </div>
    </div>
    </div>
    <div class="clear"></div>
    <div class="footer">
    <?php
    /* A sidebar in the footer? Yep. You can can customize
    * your footer with four columns of widgets.
    */
    get_sidebar('footer');
    ?>
    </div>
    </div>
    <div class="clear"></div>
    </div>
    </div>
    <!--End Wrapper-->
    <!--End Footer Wrapper-->
    <!--Start Footer Bottom-->
    <div class="footer_bottom">
    <!--Start Wrapper-->
    <div class="wrapper">
    <div class="container_24">
    <div class="grid_24">
    <div class="footer_bottom_content">
    <?php if (inkthemes_get_option('inkthemes_footertext') != '') { ?>
    <p class="copyright"><?php echo inkthemes_get_option('inkthemes_footertext'); ?></p>
    <?php } else { ?>
    <p>Copyright &copy; 2011 <a href="http://www.inkthemes.com">Designed by InkThemes.com</a></p>
    <?php } ?>
    </div>
    </div>
    </div>
    </div>
    <!--End Wrapper-->
    </div>
    <!--End Footer Bottom-->
    <?php wp_footer(); ?>
    </body>
    </html>
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,
    Do let us know your website link.
     

Share This Page