How to center the footer
  • Forgive me if I have overlooked this somewhere on the forum, I have been searching for quite a while. I want to center the menu at the bottom of my pages in the footer and I can't figure out how to do it.

    Wordpress 3.4.1
    Responsive 1.7.7
    url: www.southcover.net
  • You will need to edit the footer.php
    You need to change
    <div class="grid col-540">
            <?php if (has_nav_menu('footer-menu', 'responsive')) { ?>
                <?php wp_nav_menu(array(
                        'container'       => '',
                        'fallback_cb'      =>  false,
                        'menu_class'      => 'footer-menu',
                        'theme_location'  => 'footer-menu')
                        ); 
                    ?>
             <?php } ?>
             </div><!-- end of col-540 -->
    
    to this
    <div class="grid col-940">
            <?php if (has_nav_menu('footer-menu', 'responsive')) { ?>
                <?php wp_nav_menu(array(
                        'container'       => '',
                        'fallback_cb'      =>  false,
                        'menu_class'      => 'footer-menu',
                        'theme_location'  => 'footer-menu')
                        ); 
                    ?>
             <?php } ?>
             </div><!-- end of col-940 -->
    
    Add this to the style.css
    .footer-menu {
            text-align:center;
        }
        
        .footer-menu li {
            display:inline;
            float:none;
        }
        
        .footer-menu li a {
            display:inline-block;
        }
    

    Ulrich
  • Thank you VERY much. Worked like a charm.
  • Please consider rating the Theme @ http://wordpress.org/extend/themes/responsive

    Thanks,
    Emil
    nathang wrote:
    Thank you VERY much. Worked like a charm.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion

    Most Popular This Week