Log in

View Full Version : Move Previous/Next Thread Area above Quick Reply


edytwinky
05-10-2012, 10:49 PM
Does anybody know how to move the "Previous Thread | Next Thread" link area above the quick reply box.

demojames
05-11-2012, 03:43 AM
In your SHOWTHREAD search for:

/ multiquote scripts

Actual will be:

<!-- / multiquote scripts -->
</vb:if>

Add Below the closing if statement:

<vb:if condition="$show['next_prev_links']">
<!-- next / previous links -->
<div class="navlinks">
<vb:if condition="$vboptions['nextprevlinks']">
<vb:if condition="$prevthreadinfo">
<strong>&laquo;</strong>
<a href="{vb:link thread, {vb:raw prevthreadinfo}}">{vb:raw prevthreadinfo.title}</a>
</vb:if>
<vb:if condition="$prevthreadinfo && $nextthreadinfo"> | </vb:if>
<vb:if condition="$nextthreadinfo">
<a href="{vb:link thread, {vb:raw nextthreadinfo}}">{vb:raw nextthreadinfo.title}</a>
<strong>&raquo;</strong>
</vb:if>
<vb:else />
<strong>&laquo;</strong>
<a href="{vb:link thread, {vb:raw thread}, "goto=nextoldest"}" rel="nofollow">{vb:rawphrase prev_thread}</a>
|
<a href="{vb:link thread, {vb:raw thread}, "goto=nextnewest"}" rel="nofollow">{vb:rawphrase next_thread}</a>
<strong>&raquo;</strong>
</vb:if>
</div>
<!-- / next / previous links -->
</vb:if>

Hope that helps!