Quote:
Originally Posted by wishtheend
Anyone know how to edit the template to move the thank you box to become flush underneath the postfoot, rather than have it have that padding between the post and the thank box?
|
For the Pro version i ended up taking it out completely as it's redundant when you activate the 'Integrate Action Buttons' option; also nudged the actual thanks / likes container up a bit so it's flush with the bottom of the post.
Example.
To do this I changed the dbtech_thanks_postbit_entries template to:
PHP Code:
<vb:if condition="$show['dbtech_thanks_area']">
<vb:if condition="$show['dbtech_thanks_li']">
<li class="postbitlegacy postcontainer" style="border:0px;">
<vb:else />
<div style="clear:both;">
</vb:if>
<div class="postdetails" id="dbtech_thanks_entries_{vb:var post.postid}" style="margin-top:-11px;">
{vb:raw entries}
</div>
<vb:if condition="$actions">
<div class="postfoot">
<div class="textcontrols">
<span class="postlinking">
{vb:raw actions}
</span>
</div>
</div>
</vb:if>
<vb:if condition="$show['dbtech_thanks_li']">
</li>
<vb:else />
</div>
</vb:if>
</vb:if>