Archived topic
Logo higher than the menu
5 replies · Started by Gelu-Dănuț on February 12, 2022
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,
Any chance you can link us to the page in question?
You can use the private information field:
https://docs.generatepress.com/article/using-the-premium-support-forum/#private-information
Let me know :)
Website is https://www.facemcuratenie.ro/
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