La barra de navegación es el archivo breadcrumbs.html en tu estilo. Suponiendo que ya lo tienes para colocarla en cualquier sitio tienes que modificar el archivo dónde lo quieras poner y dejar esto:
Código HTML:
<!-- INCLUDE breadcrumbs.html -->
Si te fijas en el overall_header.html lo incluye de esta forma:
Código HTML:
<div id="wrapcentre">
<!-- IF S_DISPLAY_SEARCH -->
<p class="searchbar">
<span style="float: {S_CONTENT_FLOW_BEGIN};"><a href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a> | <a href="{U_SEARCH_ACTIVE_TOPICS}">{L_SEARCH_ACTIVE_TOPICS}</a></span>
<!-- IF S_USER_LOGGED_IN -->
<span style="float: {S_CONTENT_FLOW_END};"><a href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a> | <a href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a></span>
<!-- ENDIF -->
</p>
<!-- ENDIF -->
<br style="clear: both;" />
<!-- INCLUDE breadcrumbs.html -->
<br />
Para colocarlo abajo en la página de un post, abre el viewtopic_body.html , te copio un fragmento de mi estilo para que veas dónde incluirlo por si te sirve:
Código HTML:
<div id="pagefooter"></div>
<br clear="all" />
<!-- INCLUDE breadcrumbs.html -->
<!-- IF S_DISPLAY_ONLINE_LIST -->
<br clear="all" />
<table class="tablebg" width="100%" cellspacing="1">
<tr>
<td class="cat"><h4>{L_WHO_IS_ONLINE}</h4></td>
</tr>
<tr>
<td class="row1"><p class="gensmall">{LOGGED_IN_USER_LIST}</p></td>
</tr>
</table>
<!-- ENDIF -->
Sino te funciona ve haciendo pruebas.
Salu2.