• On a page with a sidebar my footer widgets layout acts differently from a page widhtout a sidebar. I want all footers act the same: like on a page without a sidebar.
    I’m using the twentythirteen page.

    I think I have to change something in functions.js, but I can’t figure out what:

    /**
    * Arranges footer widgets vertically.
    */
    if ( $.isFunction( $.fn.masonry ) ) {
    var columnWidth = body.is( ‘.sidebar’ ) ? 228 : 245;

    $( ‘#secondary .widget-area’ ).masonry( {
    itemSelector: ‘.widget’,
    columnWidth: columnWidth,
    gutterWidth: 20,
    isRTL: body.is( ‘.rtl’ )
    } );
    }
    } )( jQuery );

    Anyone who can help me out?

  • The topic ‘sidebar and footer widgets’ is closed to new replies.