I added this on my local Oklahoma Mustang Club Vbulletin forum...
You can add the same Breadcrumbs found at the top of the page to the bottom of the page, it really is quite usefull.
How often do you find yourself on the last page/last post of a thread and to get back into the forum section you were last on you can either hit back a few times, or scroll all the way back to the top of the page and click the section you want back into. This speeds up browsing considerably and works really well on our forum.
You can easilly add the same breadcrumb found at the top of the page to the bottom of the page as well. The actual coding is in the NAVBAR template, all I did was copy that data over to the SHOWTHREAD template.
like so...
To do so, go to your AdminCP->Styles & Templates->Style Manager. Then expand all templates, and scroll down to the template called SHOWTHREAD and double click it.
Find the following code
PHP Code:
<!-- / start content table -->
below it add the following code
PHP Code:
<!-- Begin Breadcrumb -->
<td class="alt1" width="100%">
<if condition="is_array($navbits)">
<table cellpadding="0" cellspacing="0" border="0">
<tr valign="bottom">
<td><a href="#" onclick="history.back(1); return false;"><img src="$stylevar[imgdir_misc]/navbits_start.gif" alt="$vbphrase[go_back]" border="0" /></a></td>
<td> </td>
<td width="100%"><span class="navbar"><a href="$vboptions[forumhome].php$session[sessionurl_q]" accesskey="1">$vboptions[bbtitle]</a></span> $navbits[breadcrumb]</td>
</tr>
<tr>
<td class="navbar" style="font-size:10pt; padding-top:1px" colspan="3"><a href="$scriptpath"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_finallink.gif" alt="$vbphrase[reload_this_page]" border="0" /></a> <strong>$navbits[lastelement]</strong></td>
</tr>
</table>
<else />
<div class="navbar" style="font-size:10pt"><a href="$vboptions[forumhome].php$session[sessionurl_q]" accesskey="1"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_start.gif" alt="" border="0" /></a> <strong>$vboptions[bbtitle]</strong></div>
</if>
</td>
<br>
<br>
<!-- end breadcrumb -->