Tagged: , ,

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #28650
    Navid
    Member

    Hi,

    I’m new to wordpress but getting to grips with it all slowly using the Evolution Pro theme which I am developing off-line through a localhost so I can’t and you the URL, Sorry.

    I found the helpful .css post to centre the primary menu and would like to centre the footer menus as well. Can anyone help me with the custom css code to achieve this please.

    Any help for a novice would be great!

    #28741
    Sakin
    Keymaster

    @Navid: To center the footer menu, you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #colophon #access-footer ul.menu {
        text-align: center;
    }
    #colophon #access-footer ul.menu li {
        display: inline-block;
        float: none;
    }
    #colophon #access-footer ul.menu a {
        display: block;
        float: none;
    }
    #28748
    Navid
    Member

    Thank you Sakin,

    That worked perfectly

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Center the Footer Menu’ is closed to new replies.