Archived topic
Fixed menu
7 replies ยท Started by Matthieu on August 17, 2021
Hello ! ๐๐ป The site title does not go down with the menu bar when using the "fixed menu"
Can we solve this problem?
Another thing, is it possible to have the same menu on mobile and not the hamburger version?
Thank you ! ๐
Hi there,
Can you turn of the sticky navigation option in the customizer and try this CSS instead?
.site-header {
position: sticky;
top: 0;
z-index: 99;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know :)
Ah that's perfect, thank you!
A solution to remove the hamburger on mobile but show the 2 icons of social networks? (As on the computer version)
Thanks ! ๐
Set the breakpoint to 0 in the customizer should work:
https://docs.generatepress.com/article/mobile-navigation/#initiating-the-mobile-navigation-at-a-different-width
Thanks for your reply !
Effectively this remove the hamburger but I do not get the desired effect ...
Try this CSS:
@media (max-width: 768px) {
.site-header .inside-header {
flex-direction: row;
}
}
It's perfect ! Thanks ๐
No problem :)