I removed this code from searchbox.tml but got the same issue that the grey line still show up.
<?php
echo<<<PPPRINT
<!-- BEGIN TEMPLATE: searchbox.tmpl -->
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="right" class="{$Style['menubarnb']}"><span class="{$Style['small']}">
{$Globals['pp_lang']['search']} <input type="text" name="si" style="font-size: 8pt;" size="15" value="$htmlsi" />
<input type="image" align="bottom" src="{$Globals['idir']}/go.gif" /></span>
</td>
</tr>
PPPRINT;
if ( $cat != 500 ) {
echo<<<PPPRINT
<tr>
<td colspan="6" align="right" class="{$Style['menubarnb']}">
<span class="{$Style['small']}">{$Globals['pp_lang']['recent']} <a href="{$Globals['maindir']}/showgallery.php?limit=last1&cat=$cat">{$Globals['pp_lang']['lastday']}</a>
<a href="{$Globals['maindir']}/showgallery.php?limit=last7&cat=$cat">{$Globals['pp_lang']['last7']}</a>
<a href="{$Globals['maindir']}/showgallery.php?limit=last14&cat=$cat">{$Globals['pp_lang']['last14']}</a>
<a href="{$Globals['maindir']}/showgallery.php?limit=all&cat=$cat">{$Globals['pp_lang']['allimages']}</a>
<input type="hidden" name="limit" value="$limit" /></span>
</td>
</tr>
PPPRINT;
}
echo<<<PPPRINT
</table>
<!-- END TEMPLATE: searchbox.tmpl -->
PPPRINT;
?>
Quote:
Originally Posted by Chuck S |