Site logo

Archived topic

How can I place my logo in the center left of my site?

5 replies · Started by bluebit on October 23, 2018

Viewing posts 1–6 of 6

Basically i want the my site's logo to look like its part of the nav menu, just slighly left of the License Info menu item:

Hi there,

try this CSS:

@media (min-width: 768px) {
    .inside-navigation {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .main-navigation .navigation-logo {
        margin-right: 10px;
    }
}

nice it worked!!!! is there a way to add a tiny bit of right padding to the logo to separate it a bit from the first nav item?

I edited the code above to give the logo and nav a little space.

it worked thank you

You're welcome

This archived topic is closed to new replies.