HTML Template (working live now)
Code :
post_thanks_postbit
New divs:
Code :
<div style="padding:$stylevar[cellpadding]px 0px 0px 0px;">
<div class="alt2" style="padding:$stylevar[cellpadding];border-style:solid;border-width:1px;" width="100%">
<div style="padding:0px;padding:10px 10px 10px 10px;">
<div class="alt2" style="display:inline-block;">
<if condition="$post['post_thanks_amount'] == 1">
<span style="float:left;margin-left:2px;font-weight:bold;">
<phrase 1="$post[username]">$vbphrase[post_thanks_user_says]</phrase>
</span>
<else />
<span style="float:left;margin-left:2px;font-weight:bold;"><phrase 1="$post[post_thanks_amount_formatted]" 2="$post[username]">
$vbphrase[post_thanks_users_say]</phrase>
</span>
</if>
</div>
<if condition="$bbuserinfo['usergroupid'] == 6">
<div class="alt2" style="float:right;padding:0px 20px 0px 0px;display:inline-block;" align="right" nowrap="nowrap">
<a href="post_thanks.php?do=post_thanks_remove_all&p=$post[postid]"<if condition="$vboptions['disable_ajax'] != 2">
onclick="return post_thanks_remove_all($post[postid], <if condition="$vboptions['post_groan_integrate']">true<else />false</if>);"
</if> rel="nofollow">$vbphrase[post_thanks_remove]
</a>
</div >
</if>
<if condition="$post['show_thanks_remove_option']">
<div class="alt2" style="float:right;padding:0px 20px 0px 0px;display:inline-block;" align="right" nowrap="nowrap">
<a href="post_thanks.php?do=post_thanks_remove_user&p=$post[postid]"<if condition="$vboptions['disable_ajax'] != 2">
onclick="return post_thanks_remove_user($post[postid], <if condition="$vboptions['post_groan_integrate']">true<else />false</if>);"
</if> rel="nofollow">$vbphrase[post_thanks_remove_user]</a>
</div >
</if>
</div>
<div class="alt1" colspan="3" style="padding:10px 10px 10px 10px;">$post[post_thanks_bit]</div>
</div>
</div>
Old table style:
Code :
<div style="padding:$stylevar[cellpadding]px 0px 0px 0px">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt2" style="padding:0px;padding:10px 10px 10px 10px;">
<if condition="$post['post_thanks_amount'] == 1">
<span style="margin-left:2px;font-weight:bold;"><phrase 1="$post[username]">
$vbphrase[post_thanks_user_says]</phrase>
</span>
<else />
<span style="margin-left:2px;font-weight:bold;"><phrase 1="$post[post_thanks_amount_formatted]" 2="$post[username]">
$vbphrase[post_thanks_users_say]</phrase>
</span>
</if>
</td >
<if condition="$bbuserinfo['usergroupid'] == 6">
<td class="alt2" style="padding:0px 20px 0px 0px;" align="right" nowrap="nowrap">
<a href="post_thanks.php?do=post_thanks_remove_all&p=$post[postid]"<if condition="$vboptions['disable_ajax'] != 2 AND FALSE">
onclick="return post_thanks_remove_all($post[postid], <if condition="$vboptions['post_groan_integrate']">true<else />false</if>);"</if> rel="nofollow">
$vbphrase[post_thanks_remove]
</a>
</td >
</if>
<if condition="$post['show_thanks_remove_option']">
<td class="alt2" style="padding:0px 20px 0px 0px;" align="right" nowrap="nowrap">
<a href="post_thanks.php?do=post_thanks_remove_user&p=$post[postid]"<if condition="$vboptions['disable_ajax'] != 2 AND FALSE">
onclick="return post_thanks_remove_user($post[postid], <if condition="$vboptions['post_groan_integrate']">true<else />false</if>);"</if>
rel="nofollow">$vbphrase[post_thanks_remove_user]</a>
</td >
</if>
</tr>
<tr><td class="alt1" colspan="3"><div style="padding:0px 20px 0px 5px;">$post[post_thanks_bit]</div></td></tr>
</table>
</div>