Oblivion Knight
20th November 2004, 01:43 AM
Ever noticed that if you use the "postbit_legacy" template instead of "postbit", the reply/closed button and pagenav aren't separated from the bottom post of each thread? Is this annoying you? Fear not, I have a fix (though it's somewhat sloppy)!
Open up your SHOWTHREAD template, find:
<td class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&noquote=1&p=$LASTPOSTID"><if condition="$show['closethread']"><img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /><else /><img src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" /></if></a></td>Replace it with:
<td class="smallfont"><div style="padding-top:3px; "><a href="newreply.php?$session[sessionurl]do=newreply&noquote=1&p=$LASTPOSTID"><if condition="$show['closethread']"><img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /><else /><img src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" /></if></a></div></td>Now, find:
<if condition="$show['pagenav']"><td align="$stylevar[right]">$pagenav</td></if>Replace it with:
<if condition="$show['pagenav']"><td align="$stylevar[right]"><div style="padding-top:3px; ">$pagenav</div></td></if>
You're done! Screenshots attached, much improved - I'm sure you'll agree.. :)
Open up your SHOWTHREAD template, find:
<td class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&noquote=1&p=$LASTPOSTID"><if condition="$show['closethread']"><img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /><else /><img src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" /></if></a></td>Replace it with:
<td class="smallfont"><div style="padding-top:3px; "><a href="newreply.php?$session[sessionurl]do=newreply&noquote=1&p=$LASTPOSTID"><if condition="$show['closethread']"><img src="$stylevar[imgdir_button]/reply.gif" alt="$vbphrase[reply]" border="0" /><else /><img src="$stylevar[imgdir_button]/threadclosed.gif" alt="$vbphrase[closed_thread]" border="0" /></if></a></div></td>Now, find:
<if condition="$show['pagenav']"><td align="$stylevar[right]">$pagenav</td></if>Replace it with:
<if condition="$show['pagenav']"><td align="$stylevar[right]"><div style="padding-top:3px; ">$pagenav</div></td></if>
You're done! Screenshots attached, much improved - I'm sure you'll agree.. :)