Centering the Footer

  • Unknown's avatar

    Does anyone know what CSS code I might use to center the footer of the Venture theme? Nothing seems to be working. Thank you!

    The blog I need help with is: (visible only to logged in users)

  • Hi there.

    This should work for your “NEW YORK ASSESSMENT” text:

    media="all"
    #colophon .footer-widget:nth-of-type(4n+1) {
        clear: left;
        float: none;
        margin: auto;
    }

    And if you also want to center your social buttons, try this CSS code:

    media="all"
    .social-list .menu-items {
        margin: 0 auto;
        text-align: inherit;
    }

    I hope this helps.

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