When using the pagetitle variable, now i use
Code:
<div id="pagetitle">
<h1>{vb:raw pagetitle}</h1>
</div>
and
PHP Code:
$templater->register('pagetitle', $pagetitle);
This shows up as a normal pagetitle on the page. Now i want to use it as the forums do in default. When you go in a forum, the "forum" title and the catagory title are clickable inside the pagetitle bit. How do i get this effect in custom pages? I'm oblivious to it.
And i've tried just adding a "<a href></a>" to it, but it only makes the text clickable, not the entire thing.
--------------- Added [DATE]1261736018[/DATE] at [TIME]1261736018[/TIME] ---------------
I was looking at the wrong thing, sorry fixed.
Using a different php file with the following code now:
PHP Code:
$navbits = construct_navbits(array('database.php' => 'Database',
'database.php?' => 'Items',
'' => 'Raw Jade of Fog',
));
This created a sub-page navigation for me, like the forums do aswell.