Quote:
Originally Posted by Redlinemotorsports
Try this
HTML Code:
<if condition="post[field9] == 'Xbox 360' ">
<td class="alt2" align="left" valign="top">
<iframe src="http://gamercard.xbox.com/$post[field10].card" scrolling="no" frameBorder="0" height="95" width="204">$post[field10] </iframe>
</td>
</if>
<if condition="post[field9] == 'Playstation 3' ">
<td class="alt2" align="left" valign="top">
<a href="http://www.us.playstation.com/PSN/Users/$post[field33]">
<img src="http://pid.us.playstation.com/user/$post[field33].jpg" width="235" height="149" border="0" alt="" />
</a>
</td>
</if>
|
Almost right.
HTML Code:
<if condition="$post[field9] == 'Xbox 360' ">
<td class="alt2" align="left" valign="top">
<iframe src="http://gamercard.xbox.com/$post[field10].card" scrolling="no" frameBorder="0" height="95" width="204">$post[field10] </iframe>
</td>
</if>
<if condition="$post[field9] == 'Playstation 3' ">
<td class="alt2" align="left" valign="top">
<a href="http://www.us.playstation.com/PSN/Users/$post[field33]">
<img src="http://pid.us.playstation.com/user/$post[field33].jpg" width="235" height="149" border="0" alt="" />
</a>
</td>
</if>