Your name and your team name (the bits to the far right of the screen) should be controled by this lot of code, found near the bottom of the header.xml file:
<pre class="ip-ubbcode-code-pre"> <container id="ZDr1"> <layout class="arrange_vertical_attachment" alignment="top" offset="16"/> <layout class="stick_to_sides_attachment" alignment="horizontal" layout_children="true" inset="16"/> <widget class="text" id="pers" text="" standard_spec="text" style="embossed" alignment="right" auto_size="vertical" multiline="false"> <attachment class="get_global_attachment" get_property="user" set_property="text"/> </widget> <widget class="text" id="team" text="" standard_spec="text" style="embossed" alignment="right" auto_size="vertical"> <attachment class="get_global_attachment" get_property="Tnam" set_property="text"/> </widget> </container></pre>
These two lines of the above code should control the placement:
<pre class="ip-ubbcode-code-pre"> <layout class="arrange_vertical_attachment" alignment="top" offset="16"/> <layout class="stick_to_sides_attachment" alignment="horizontal" layout_children="true" inset="16"/></pre>
You may need to change the aligment from horizontal to left or right, and change inset to offset. Leaving it how it is, increasing the inset value should shift the data to the left, decreasing should shift it to the right. (I haven't changed this myself, but that should be right).
And incase you ask

. The date on the left side is controled by this code in the header file:
<pre class="ip-ubbcode-code-pre"> <container> <layout class="arrange_vertical_attachment" alignment="top" offset="16"/> <layout class="stick_to_sides_attachment" alignment="horizontal" inset="16" layout_children="true"/> <widget class="date_cell" id="date" text="date" standard_spec="text" style="embossed" alignment="top, left" auto_size="vertical"> <attachment class="get_global_attachment" get_property="date" set_property="valu"/> <attachment class="test_global_attachment" get_property="cont" value="-8" set_property="hidn" skip_if_null="false" skip_if_resetting="false" priority="1"/> <string id="format"> [%date#1-day] [%date#1-time] </string> </widget> <widget class="date_cell" id="date" text="date" standard_spec="text" style="embossed" alignment="top, left" auto_size="vertical"><attachment class="get_global_attachment" get_property="date" set_property="valu"/><attachment class="test_global_attachment" get_property="cont" value="-8" set_property="hidn" skip_if_null="false" skip_if_resetting="false" priority="1"/><string id="format">[%date#1-long_no_day]</string></widget> </container></pre>
Which is located around the middle of the file. And is coded the same way as your user name, above.
The main title, flag, subtitle etc... is controled by this load of code, located inbetween the date and user code:
<pre class="ip-ubbcode-code-pre"> <container id="tita"> <container height="48"> <layout class="arrange_vertical_attachment" alignment="bottom,extend" offset="0" gap="0"/> <layout class="stick_to_sides_attachment" alignment="horizontal" layout_children="true"/> <layout class="stick_to_sides_attachment" alignment="top,horizontal" inset="10"/><!-- title area --> <widget class="text" id="sect" standard_spec="title,large" alignment="centre"> <attachment class="get_global_attachment" get_property="titl" set_property="text"/> <attachment class="get_global_attachment" get_property="fcol" set_property="colr"/> </widget> <!-- subtitle area --> <container height="20"><layout class="stick_to_sides_attachment" alignment="vertical" inset="0" layout_children="true"/><layout class="centre_in_parent_attachment" alignment="horizontal" layout_children="true"/> <!-- hide when no subtitle --><attachment class="test_global_attachment" get_property="subt" skip_if_null="false" set_property="hidn"/> <container><layout class="arrange_horizontal_attachment" alignment="left" offset="0" gap="8"/> <layout class="fit_children_attachment" alignment="horizontal,fill" offset="0" gap="8"/><layout class="stick_to_sides_attachment" alignment="vertical" inset="0" layout_children="true"/><!-- flag --><widget class="nation_button" id="stfl" auto_size="horizontal" icon_alignment="right,can_scale" dspf="4"><attachment class="test_global_attachment" get_property="stfl" skip_if_null="false" set_property="hidn"/><attachment class="get_global_attachment" get_property="stfl" set_property="valu"/> </widget><!-- description --> <widget class="text" id="subs" standard_spec="text" alignment="centre" mlti="false" auto_size="horizontal"><attachment class="get_global_attachment" get_property="subt" set_property="text"/> <attachment class="get_global_attachment" get_property="fcol" set_property="colr"/></widget> </container> </container> </container> </container></pre>
If you want your header to look like Auora, your best off opening the header file for the Auroa skin and seeing how the above code is different.
All the code I've posted is from the Metallic skin, just so you know what the above code looks like in game. The code in the header for the remix skin, may look slightly different depending on how much the skin maker has edited the skin.