Quote:
Originally Posted by juicemanfta
Thanks for the Hack?.Installed?I have a problem with the negative not aligned properly. Can someone please help me? I was looking at the the following code in Product.xml but it looks fine?
<tr style="color:#FF0000">
<td align="left"><img src="images/icons/icon8.gif" align="absmiddle" alt="Negative" /> $vbphrase[itrader_negative]</td>
<td align="center"><if condition="$userinfo[tradeneg30]">$userinfo[tradeneg30]<else />0</if></td>
<td align="center"><if condition="$userinfo[tradeneg180]">$userinfo[tradeneg180]<else />0</if></td>
<td align="center"><if condition="$userinfo[tradeneg365]">$userinfo[tradeneg365]<else />0</if></td>
</tr>

|
Change:
PHP Code:
<td align="left"><img src="images/icons/icon8.gif" align="absmiddle" alt="Negative" /> $vbphrase[itrader_negative]</td>
To:
PHP Code:
<td align="left" nowrap><img src="images/icons/icon8.gif" align="absmiddle" alt="Negative" /> $vbphrase[itrader_negative]</td>
I am just guessing, this should work.