In the instructions where it states:
Code:
Find (the key here is to look for the start <td> and end </td> tags):
Skip it.
Then when you see this:
Code:
----------
AFTER add:
----------
<!-- / MESSAGE COLUMN -->
<!-- USER COLUMN -->
Remove the codes between the <td> and </td> tags. Then add the Profile Field bits with conditionals something like:
Code:
<div class="smallfont">
<if condition="$post['fieldx']>
$post[fieldx]<br />
</if>
<if condition="$post['fieldy']>
$post[fieldy]<br />
</if>
<if condition="$post['fieldz']>
$post[fieldz]<br />
</if>
</div>
Then when you see the instruction:
Code:
-------------
Replace with:
-------------
<!-- MESSAGE BUTTONS -->
In that code replace this:
Code:
<if condition="$show['moderated']">
<td class="alt2" align="$stylevar[left]">
<else />
<td class="alt1" align="$stylevar[left]">
</if>
With:
Code:
<if condition="$show['moderated']">
<td class="alt2" align="$stylevar[left]" colspan="2">
<else />
<td class="alt1" align="$stylevar[left]" colspan="2">
</if>
I haven't tested it but it should work. All I added in the last step is the colspan.
You may of course need to tweak the change of codes to your standards. I hope it gives you a starting point.