Solution:1
If you are trying this this
On devices with width > 1024px Header remains fixed while pages below scroll horizontally
Then place your header tags just after opening body tag. Like
<body ...>
<header ...>
...
</header>
...
...
</body>
I hope it will work.