FIND:
HTML Code:
<if condition="$show['gifts']">
<div class="fieldset">
<table class="tborder" cellpadding="5" cellspacing="0" border="0" width="100%" align="center">
<thead>
<tr align="center">
<td class="thead" colspan="4"><a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('usergiftsmode')"><img id="collapseimg_usergiftsmode" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_usergiftsmode].gif" alt="" border="0" /></a>$vbphrase[vbplaza_gifts]</td>
</tr>
</thead>
<tbody id="collapseobj_usergiftsmode" style="">
<tr>
<td class="tcat"></td>
<td class="tcat">$vbphrase[vbplaza_sender]</td>
<td class="tcat">$vbphrase[vbplaza_message]</td>
<td class="tcat"><if condition="$show['candelete']">$vbphrase[vbplaza_delete]</if></td>
</tr>
$userinfo[gifts]
</tbody>
</table>
</div>
</if>
REPLACE WITH:
HTML Code:
<if condition="$show['gifts']">
<div class="fieldset">
<table class="tborder" cellpadding="5" cellspacing="0" border="0" width="100%" align="center">
<thead>
<tr align="center">
<td class="thead" colspan="5"><a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('usergiftsmode')"><img id="collapseimg_usergiftsmode" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_usergiftsmode].gif" alt="" border="0" /></a>$vbphrase[vbplaza_gifts]</td>
</tr>
</thead>
<tbody id="collapseobj_usergiftsmode" style="">
<tr>
<td class="tcat"></td>
<td class="tcat">$vbphrase[vbplaza_sender]</td>
<td class="tcat">$vbphrase[vbplaza_message]</td>
<td class="tcat">$vbphrase[vbplaza_view]</td>
<td class="tcat"><if condition="$show['candelete']">$vbphrase[vbplaza_delete]</if></td>
</tr>
$userinfo[gifts]
</tbody>
</table>
</div>
</if>
the difference??
the first row colspan="4"
the second row has 4 rows ... however, the 3rd row $userinfo[gifts] ... contains 5 cells (view image)
I changed the first row to colspan="5"
added another cell to second row