• Hi Everyone, I need some help Please !

    My site is http://www.st-marketing.co.uk

    I have set up a child theme (twenty eleven)

    I have adding 2 more footer sidebars which I am using 1 off and it is working, my problem is the sidebar layout

    I would like the 4 footer sidebars equally spaced with left side inline with images above and right side equal to left

    Also column 3 is using the enhanced text widget and as you can see the spacing between each entry is out, the column should look like column 1

    The images at the bottom are in image widgets and should be inline with the other 3 columns

    Any help much appreciated

    Paul

Viewing 4 replies - 1 through 4 (of 4 total)
  • I would like the 4 footer sidebars equally spaced with left side inline with images above and right side equal to left

    there are only three footer areas visible –
    can you explain in more detail what you want to have where?

    using a tool such as Firebug http://getfirebug.com/ might help you to identify which styles you need to edit.

    Thread Starter paulshack

    (@paulshack)

    I am showing 3 extra sidebars in back end and I can put widget into both, the widget shows up on the front end but under the 3 default sidebars with twenty eleven theme

    I need all 4 sidebars in a row with equal spacing across page

    Make sense?

    Paul

    Thread Starter paulshack

    (@paulshack)

    sorry 2 extra sidebars showing

    Thread Starter paulshack

    (@paulshack)

    Bolow is the content of my functions.php file I am trying to ad a 4th sidebar to footer
    Please can someone advise correct code, and also what I need to put in footer.php

    <?php

    register_sidebar( array(
    ‘name’ => __( ‘Footer Area Four’, ‘twentyeleven’ ),
    ‘id’ => ‘sidebar-6’,
    ‘description’ => __( ‘An optional widget area for your site footer’, ‘twentyeleven’ ),
    ‘before_widget’ => ‘<aside id=”%1$s” class=”widget %2$s”>’,
    ‘after_widget’ => “</aside>”,
    ‘before_title’ => ‘<h3 class=”widget-title”>’,
    ‘after_title’ => ‘</h3>’,
    ) );
    if ( is_active_sidebar( ‘sidebar-6’ ) )
    $count++;

    $class = ”;

    switch ( $count ) {
    case ‘4’:
    $class = ‘four’;
    break;
    if ( is_active_sidebar( ‘sidebar-6’ ) ) : ?>
    <div id=”four” class=”widget-area” role=”complementary”>
    <?php dynamic_sidebar( ‘sidebar-6’ ); ?>
    </div><!– #fourth .widget-area –>

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Twenty Eleven Theme Footer Sidebar Positioning’ is closed to new replies.