This is a great hack.
For consistency, suggest it needs a navigation bar at the top of each page. So we need to define $navbar in links.php, for example,
PHP Code:
// Make Links Nav Bar
$nav_url="links.php?s=$session[sessionhash]";
$nav_title="Links";
eval("\$navbits .= \"".gettemplate('nav_linkoff')."\";");
eval("\$navbar = \"".gettemplate("navbar")."\";");
right at the start (after require..)
Then most templates need a
PHP Code:
<table cellpadding="2" cellspacing="0" border="0" width="{contenttablewidth}" {tableinvisibleextra} align="center">
<tr>
<td width="100%">$navbar</td>
</tr>
</table>
after $header
OK?