Forum Moderators: martinibuster
. . . how do I reverse the ad units loading order?
Usually this sort of thing is done with CSS. The trick is to have your content appear higher up in the HTML than the header, but display below it.
In your case, you can use absolute positioning. In other words, put your content between div tags, followed by your header between div tags, like this:
<div style="position:absolute;top:60px;left:0px;">content</div>
<div style="position:absolute;top:0px;left:0px;">header</div>
Adjust the "top" and "left" parameters as needed.