Nav bar doesn't center

http://64.92.209.209/~tetondjservices/

I want to have the logo above and menu centered but it doesn't ever center no matter what I try. Any quick thoughts?

Comments

  • Hi,

    this can be done with the following css only:
    @media only screen and (min-width: 768px) {
        #Top_bar .column {
            text-align: center;
        }

        #Top_bar .top_bar_left {
            display: inline-block;
            float: none;
            width: auto !important;
        }
    }
Sign In or Register to comment.