Skip to content

Snippet: Center Align Header Style 1

@media only screen and (min-width: 960px) {
    body #site-header-inner {
        text-align: center;
    }

    body .header-one #site-logo {
        display: inline-block;
        float: none;
        height: 50px;
        line-height: 50px;
    }

    body .navbar-style-one {
        position: static;
        display: inline-block;
        left: auto;
        right: auto;
        top: auto;
    }
}
Back To Top