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 Dear,
I need to put the logo like this http://alessio.guru/logo.jpg . Is it possibile ?
Thanks.
Alessio
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.