Ooops. I forgot to add the ending quote. The above code where it says:
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>
Change it to:
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>
See if that helps.