• I am very inexperienced with editing WordPress but was steered towards this site for assistance.

    The site I will reference is http://www.sbareview.com/

    The issue I am requesting assistance with is that I wish to add additional page to menu reflected in footer. I understand how to add these pages but the footer itself forces new page listings to drop down into a second line of the footer. This issue can be seen on the site as it exists currently where “Restaurants” is on the second line of the footer.

    I wish to: 1) allow for more space to the right so that additional pages can be listed, and 2) format footer so that there can be multiple columns with rows formatted to align left beneath each column.

    I believe the following may help but am unsure. It is the current editor code for this section of site:

    <?php
    /**
    * The template for displaying the footer.
    *
    * Contains the closing of the id=main div and all content after
    *
    * @package WordPress
    * @subpackage Twenty_Eleven
    * @since Twenty Eleven 1.0
    */
    ?>

    </div><!– #middle –>

    <div id=”footer”>
    <div class=”top_border”> </div>
    <div class=”footer_in”>
    <?php wp_nav_menu( array(

    ‘menu’ => ‘footer_menu’,
    ‘container’ => ”,
    ‘menu_class’ => ‘footer_menu’,
    ‘menu_id’ => ”,
    ‘echo’ => true,
    ‘fallback_cb’ => ‘wp_page_menu’,
    ‘items_wrap’ => ‘<ul id=”%1$s” class=”%2$s”>%3$s’

    )); ?>
    <div class=”copy”>© 2014 SBA Review</div>

    </div>
    </div>
    </div><!– #wrapper –>

    <?php wp_footer(); ?>

    </body>
    </html>

    Thank you for any help available.

    Jim

  • The topic ‘Footer Formatting’ is closed to new replies.