Place the bit in
red underneath the bit in
green.
Code:
<td valign="top" width="100%" id="username_box"<if condition="$prepared['profilepicurl']"> class="profilepic_adjacent"</if>>
<if condition="$prepared['rank'] OR $prepared['reputationdisplay']">
<div id="reputation_rank">
<if condition="$prepared['reputationdisplay']">
<div id="reputation">$prepared[reputationdisplay]</div>
</if>
<if condition="$prepared['rank']">
<div id="rank">$prepared[rank]</div>
</if>
</div>
</if>
<h1>$prepared[musername] $prepared[onlinestatus]</h1>
<if condition="$prepared['usertitle']">
<h2>$prepared[usertitle]</h2>
</if>
</td>
Then in memberinfo_css template, find:
Code:
#reputation_rank {
float:$stylevar[right];
}
#reputation {
margin-bottom:6px;
text-align:$stylevar[right];
}
#rank {
margin-bottom:6px;
text-align:$stylevar[right];
}
Change to:
Code:
#reputation_rank {
float:$stylevar[left];
}
#reputation {
margin-bottom:6px;
text-align:$stylevar[left];
}
#rank {
margin-bottom:6px;
text-align:$stylevar[left];
}
If goes a bit messed up after that, try removing this:
Code:
#reputation_rank {
float:$stylevar[left];
}
From memberinfo_css