just remove anything that was originally in that div so everything between
Code:
<div class="navlinks">
and
in my version of vbulletin (4.1) it is the following code:
Code:
<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="showthread.php?{vb:raw session.sessionurl}t={vb:raw threadid}&goto=nextoldest" rel="nofollow">{vb:rawphrase prev_thread}</a>
|
<a href="showthread.php?{vb:raw session.sessionurl}t={vb:raw threadid}&goto=nextnewest" rel="nofollow">{vb:rawphrase next_thread}</a>
<strong>»</strong>
</vb:if>