Hallo,
hab das auch schon seit längerem entfernt...
Es muesste in der remository.html.php irgendwo da:
Code:
function mainPageHeading ($belowTop) {
$title = _DOWNLOADS_TITLE;
if ($title OR $this->mainpicture) {
if ($belowTop) $headlevel = 'h3';
else $headlevel = 'h2';
echo "\n\t<div id='remositorypageheading'>";
// if ($this->mainpicture != '') echo "\n\t\t<img src='$this->mainpicture' alt='Header'/>";
echo "\n\t\t<$headlevel>$title ";
// The following three lines create RSS links - remove if not required
$rssurl = $this->repository->RemositoryFunctionURL('rss');
$this->interface->addCustomHeadTag("<link rel='alternate' type='application/rss+xml' title='RSS - "._DOWN_NEWEST."' href='$rssurl' />");
echo $rssurl.$this->repository->RemositoryImageURL('feed-icon-32x32.gif')." RSS</a>";
// End of RSS link code
echo "</$headlevel>";
echo "\n\t<!-- End of remositorypageheading-->";
echo "\n\t</div>\n";
}
}
und so siehts bei mir aus:
Code:
function mainPageHeading ($belowTop) {
$this->ueberschrift();
if (_DOWNLOADS_TITLE != '' OR $this->mainpicture != '') {
// The following three lines create RSS links - remove if not required
// $rssurl = $this->repository->RemositoryFunctionURL('rss');
// $this->interface->addCustomHeadTag("<link rel='alternate' type='application/rss+xml' title='RSS - "._DOWN_NEWEST."' href='$rssurl' />");
// echo $rssurl.$this->repository->RemositoryImageURL('feed-icon-32x32.gif')." RSS</a>";
// End of RSS link code
echo "\n\t<br><center>\n";
echo $this->repository->RemositoryFunctionURL('search');
echo $this->repository->RemositoryImageURL('search.gif');
echo _DOWN_SEARCH.'</a>              ';
if ($this->submitok) {
$idparm = remositoryRepository::GetParam($_REQUEST, 'id', 0);
echo $this->repository->RemositoryFunctionURL('addfile', $idparm);
}
echo $this->repository->RemositoryImageURL('add_file.gif');
if ($this->submitok) echo _SUBMIT_FILE_BUTTON.'</center></a>';
else echo $this->submit_text;
echo "\n\t</center><br>\n";
echo "</$headlevel>";
echo "\n\t<!-- End of remositorypageheading-->";
echo "\n\t</div>\n";
}
}
Da ist die Überschrift ganz weg und der Suchen/Vorschlagen-Button oben...
Lesezeichen