Im note sure what you exactly mean...
Do you use templates to power your pages? If you do, then they must be in the Forum directory, am I correct?
If that is the case, do the following :
Edit online.php
===========
FIND:
PHP Code:
case 'gallery':
$userinfo[where] = "Viewing Picture <a href='gallery.php?s=$session[sessionhash]'>Gallery</a>";
break;
AFTER IT ADD:
PHP Code:
case 'name of file':
$userinfo[where] = "Viewing <a href='name of file.php?s=$session[sessionhash]'>Name of the File</a>";
break;
THEN FIND:
PHP Code:
case 'gallery.php':
$userinfo[activity] = 'gallery';
break;
AFTER IT ADD:
PHP Code:
case 'name of file.php':
$userinfo[activity] = 'name of file';
break;
(Make sure you change all instances of "name of file.php" and "name of file" to the file name you chose)
Satan