Then I suggest moving it down a bit. How are you adding it, via a html header?
In admin, under edit template, edit menubar.tmpl and add something like this:
<a title="Go back to out main page!" href="http://your link">Home</a> ·
Make sure you add the
· to separate the menus as they are
add this after this:
Quote:
$menu2
</td>
<td class="" width="50%" align="right" valign="middle">
|
For the 'Home", you need to edit language file, english.php, and change 'Home" to something else.
Your menubar.tmpl should look something like this once done:
Quote:
<?php
echo <<<PPPRINT
<!-- BEGIN TEMPLATE: menubar.tmpl REPLACEME -->
$ppopen
<tr>
<td class="{$Style['menubar']}" width="100%" colspan="2">
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td class="" width="50%" align="left" valign="middle">
$menu2
</td>
<td class="" width="50%" align="right" valign="middle"> <a title="Go back to out main page!" href="http://your link">Home</a> ·
$menu
</td>
</tr>
</table>
</td>
</tr>
$ppclose<br />
<!-- END TEMPLATE: menubar.tmpl REPLACEME -->
PPPRINT;
?>
|