Quote:
Originally Posted by farplane dragon
You mean like,
<div>
<if condition="$show['avatar']"><td class="alt2"><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a></td></if>
<td nowrap="nowrap">
</div>
That doesn't seem to do anything
|
No, you need to put the div tags inside the column like this:
HTML Code:
<if condition="$show['avatar']"><td class="alt2"><div><a href="member.php?$session[sessionurl]u=$post[userid]"><img src="$post[avatarurl]" $post[avwidth] $post[avheight] alt="<phrase 1="$post[username]">$vbphrase[xs_avatar]</phrase>" border="0" /></a></div></td></if>
<td nowrap="nowrap">
Another thing to try is to move the awards stuff into the div tag above that instead of having it separate. Also, notice how it doesn't have div tags around part of that code - that could throw it off. I think you just need to play with it.