In your SHOWTHREAD search for:
/ multiquote scripts
Actual will be:
PHP Code:
<!-- / multiquote scripts -->
</vb:if>
Add Below the closing if statement:
PHP Code:
<vb:if condition="$show['next_prev_links']">
<!-- next / previous links -->
<div class="navlinks">
<vb:if condition="$vboptions['nextprevlinks']">
<vb:if condition="$prevthreadinfo">
<strong>«</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>»</strong>
</vb:if>
<vb:else />
<strong>«</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>»</strong>
</vb:if>
</div>
<!-- / next / previous links -->
</vb:if>
Hope that helps!