hey, ok heres how i did it
i created a template in my admin cp called links for example
then i made a new php file called links.php which had the following code in it:
<?php
error_reporting(E_ALL & ~E_NOTICE);
require_once('./global.php');
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('links (or whatever your template is called)') . '");');
?>
i uploaded that into my forum directory and then created a link in my navigation bar to link.php
Hope this was some help