Im trying to make the points / donate link look like how they do in the attatchments
What should I replace
HTML Code:
<if condition="$bbuserinfo['usergroupid'] == '6'"><a href="ushop.php?do=a&shortname=admindonate&userid=$post[userid]" target="_blank">$vbphrase[ucs_points]</a><else />$vbphrase[ucs_points]</if>: $points <br><a href="ushop.php?do=a&shortname=donate&userid=$post[userid]" target="_blank">Donate</a><br>
with?
I tried using this
HTML Code:
<if condition="$bbuserinfo['usergroupid'] == '6'">
<fieldset><legend><a href="ushop.php?do=a&shortname=admindonate&userid=$post[userid]" target="_blank">$vbphrase[ucs_points]</a></legend><table><tr><td>
$points
</td></tr>
</table></fieldset><br>
<else />
<br><a href="ushop.php?do=a&shortname=donate&userid=$post[userid]" target="_blank">Donate</a>
</if>
But it wont work
Help. :ermm: