How to get position:fixed to work on iOS?

Im using framework7 to all my apps, but for this one I can´t so I wonder.

Im trying to get a top menu to stay fixed, using position:fixed.
But when i scroll down the page, the menu scrolls up and when I stop scrolling it shows up again at the right position. So how can I prevent it from scrolling?

I have tried to set transform: translate3d(0,0,0); on the menu div but no luck.
I know that Vladimir knows :wink:
Any input really appreciated thanks.

It won’t work if it is inside of page-content, put it as a direct child of .page with position: absolute

Thanks Vladimir I got it working. Great.