The header is jumpy on older versions of Android. What now?
That happens on older versions of Android, versions we don’t support due to the fact that they don’t support the most basic of CSS functions, but there is a fix nevertheless although we suggest updating your device’s software!
At the moment, the structure where the header is is like this
<div class="all-elements">
<div id="header-fixed">
...
</div>
</div>
Now, take the entire header-fixed class, and move it above the all elements, outside that div so it’s like this.
<div id="header-fixed">
<!-- Moved OUTSIDE the all-elements class-->
</div>
<div class="all-elements">
<!-- All the page content still here -->
</div>
Also, after doing that add style=”margin-top:-60px!important” to your header id and voila!