Site logo

Archived topic

How to keep the logo always centered?

1 reply · Started by Jorge Araújo on January 23, 2017

Viewing posts 1–2 of 2

Kind of a tough one, as centered items move depending on if other items are on the same line.

One thing you can do is make the header widget position:absolute, which will make it no visible to the centered logo.

For example:

@media (min-width: 769px) {
    .inside-header {
        position: relative;
    }

    .header-widget {
        position: absolute;
        right: 0;
    }
}
This archived topic is closed to new replies.