Hi @nowe,
We can only control the mobile header of our plugin. There is a specific option to make it sticky or not.
check this article.
https://www.wpmobilemenu.com/knowledgebase/header-options/how-to-make-the-mobile-menu-header-sticky-or-unsticky/
Hope it helps.
Thread Starter
NoWe
(@nowe)
Sticky Html Elements
If you are having issues with sticky elements that dont assume a sticky behaviour, enter the ids or class name that identify that element.
i placed #top-header in it but it is no sticky
That is a different option for pre-existing sticky elements. We have a menu animation that may cause some issues with sticky elements and that option is for those situations.
You can set it to sticky with CSS by using the position: fixed
Something like this, but this goes outside of our support scope since it’s a customization hope you understand.
#top-header{
position: fixed;
top: 50px;
left:0px;
}
Thread Starter
NoWe
(@nowe)
i did it manually
thanks for the replies
No problem. Let me know if necessary.