• I need to put some logos in my footer but with 3 widgets they look very spaced out. How do I either delete 2 of the widgets and have 1 long widget or edit the padding between the widgets?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Have you try to modify from theme customizer?

    Can you provide the link to your site?

    Thread Starter markeith

    (@markeith)

    you can use one footer widget from theme customizer but you have to modify the sidebar-footer.php

    change this line:

    <?php if ( is_active_sidebar( 'sidebar-3' ) ) { ?>
       <div class="sidebar-column col-md-4 col-sm-4"> <?php
         dynamic_sidebar( 'sidebar-3');
       ?> </div> <?php
    }

    to:

    <?php if ( is_active_sidebar( 'sidebar-3' ) ) { ?>
       <div class="sidebar-column col-md-12 col-sm-12"> <?php
        dynamic_sidebar( 'sidebar-3');
       ?> </div> <?php
    }

    Hi,

    I’ve been reading through the various posts on editing footer widgets and would appreciate some help. Specifically, the width of the widget areas.

    On our site: https://www.scalepreventionusa.com you’ll see the original designer put the address block close to the center of the footer. As a result the logos in the other widget are all bunched up. There’s another logo to add so it’s time to get the footer sorted out.

    Thanks,

    David

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How do edit the footer widgets’ is closed to new replies.