• Can anyone tell me SIMPLY…how I can put navigation links in the footer of Twenty Ten theme? I want it horizontal…not vertical.

    I have already create a CHild Theme but I need a simple way of doing the links.

    Thanks so much for your help!!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • you can use css to control the way the menu is displayed.

    ul li { float:left; display:inline; }

    Thread Starter innkeeperea

    (@innkeeperea)

    So would I place it here in the style sheet?

    /* =Footer
    ————————————————————– */

    #footer {
    margin-bottom: 20px;
    ul li { float:left; display:inline; }

    Thread Starter innkeeperea

    (@innkeeperea)

    I tried putting it in the style sheet but it didn’t change it.

    Would putting in in this section of the widget area in functions.php work some how??

    See the footer area of this page: http://bluemontinluray.com/
    I want them to be horizontal and not vertical.

    // Area 3, located in the footer. Empty by default.
    register_sidebar( array(
    ‘name’ => __( ‘First Footer Widget Area’, ‘twentyten’ ),
    ‘id’ => ‘first-footer-widget-area’,
    ‘description’ => __( ‘The first footer widget area’, ‘twentyten’ ),
    ‘before_widget’ => ‘<li id=”%1$s” class=”widget-container %2$s”>’,
    ‘after_widget’ => ”,
    ‘before_title’ => ‘<h3 class=”widget-title”>’,
    ‘after_title’ => ‘</h3>’,

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Putting horizontal navigation in the footer’ is closed to new replies.