Site logo

Archived topic

Logo higher than the menu

5 replies · Started by Gelu-Dănuț on February 12, 2022

Viewing posts 1–6 of 6

Using GeneratePress Premium is it possible that the logo is higher than the menu? See examples of sites?
Is it possible for the menu to be rounded at the ends as in the examples?
Thank you!

Hi there,

you can do something like this:

@media(min-width: 769px) {
    .navigation-branding {
        position: absolute;
        left: 0;
        top: -10px;
        z-index: 10000;
    }

    .navigation-branding img {
        height: 100px; /* change the logo size */
    }
}

You need to adjust the top and height values to suit.
A positive top value will move it down.

Thank you!

You're welcome

This archived topic is closed to new replies.