Site logo

Archived topic

Header widget above float right primary menu

3 replies · Started by David on September 2, 2022

Viewing posts 1–4 of 4

Hi there,

you can use some CSS Grid:


.site-header .inside-header {
    display: grid;
    grid-template-columns: auto 1fr;
}
.site-logo {
    grid-column: 1;
    grid-row: 1 / 3;
}
.header-widget {
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
}
.main-navigation {
    grid-row: 2;
    grid-column: 2;
}

You may want to place it in a media query to suit your needs.

That's great, thank you!

You're welcome

This archived topic is closed to new replies.