Site logo

Archived topic

How to put logo over primary and secondy navigation (screenshot) ?

3 replies · Started by Alessio Angeloro on July 22, 2020

Viewing posts 1–4 of 4

Hi there,

you can use some CSS like this to absolutely position it over the top secondary nav:

@media (min-width: 769px) {
    .inside-header {
        position: relative;
    }
    .site-logo {
        position: absolute;
        top: -30px;
        left: 0;
    }
}

You will need to increase the site logo size and make sure there is room for it or it will overlap the navigation menus.

Thanks David.

You're welcome

This archived topic is closed to new replies.