Quote:
Originally Posted by TheWindows7Site
Open template forumjump
Find & Delete:
Code:
<a href="{vb:raw relpath}#top" class="textcontrol" onclick="document.location.hash='top';return false;">{vb:rawphrase top}</a>
Open template FORUMDISPLAY
Find:
Code:
<div class="threadpagenav">
{vb:raw pagenav}
{vb:raw forumjump}
</div>
Replace with:
Code:
<div class="threadpagenav">
{vb:raw pagenav}
</div>
Find:
Code:
<vb:if condition="$announcebits">
<ol id="announcements" class="announcements">
{vb:raw announcebits}
</ol>
</vb:if>
Add After:
Open template SHOWTHREAD
Find:
Code:
<div id="pagination_bottom" class="pagination_bottom">
<vb:if condition="$show['pagenav']">
{vb:raw pagenav}
</vb:if>
{vb:raw forumjump}
</div>
Replace with:
Code:
<div id="pagination_bottom" class="pagination_bottom">
<vb:if condition="$show['pagenav']">
{vb:raw pagenav}
</vb:if>
</div>
Find:
Code:
{vb:raw header}
{vb:raw navbar}
{vb:raw template_hook.showthread_above_posts}
{vb:raw poll}
Add after:
Code:
<style type="text/css">
.navpopupmenu {padding:10px 0!important;}
</style>
{vb:raw forumjump}
Enjoy! 
|
Very nice, Does this just move it to the top or does it add one to the top?