Site logo

Archived topic

Header Widget - Move it Slightly

5 replies · Started by Duncan on March 21, 2017

Viewing posts 1–6 of 6

Try this CSS:

.site-logo {
    float: left;
}

.header-widget {
    display: inline-block;
    float: none;
}

That worked with an added margin

.header-widget {
display: inline-block;
float: none;
margin-left:200px;
}

Thanks Tom

Might want to wrap that in a media query so it only happens on desktop:

@media (min-width: 769px) {
    .header-widget {
        display: inline-block;
        float: none;
        margin-left:200px;
    }
}

Brilliant Tom - Thank you

You're welcome :)

This archived topic is closed to new replies.