This is what the menubar.tmpl has now. Do I replace out everything or a certain part?
Quote:
<?php
$vercheck = substr($simple_version, 0, 2);
if ( $vercheck >= 42 )
{
}
else
{
echo<<<PPPRINT
<!-- BEGIN TEMPLATE: menubar.tmpl REPLACEME -->
<div class="blockcontainer gshad">
<div class="sbox collapse">
<h2 class="boxhead"><span class="boxtitle"> </span></h2>
</div>
<div class="box-body" align="center">
<table class="gridtable hidegrid" align="center" border="0" cellpadding="4" cellspacing="1" width="100%">
<tr>
<td class="blockrow" align="center" width="100%">
<table width="100%" cellpadding="0" cellspacing="0">
<tr>
<td width="50%" align="left" valign="middle">
$menu2
</td>
<td width="50%" align="right" valign="middle">
$menu
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</div>
<!-- END TEMPLATE: menubar.tmpl REPLACEME -->
PPPRINT;
}
?>
|