chrissy6930
Karma: 27
|
Re:Removing page title - 2008/10/17 20:49
in ../components/com_remository/remository.html.php comment out or delete:
| Code: | /*#remositorypageheading {
background-image: url($this->mainpicture);
}*/
|
and:
| Code: | /*function mainPageHeading ($belowTop) {
$title = _DOWNLOADS_TITLE;
if ($title OR
$this->mainpicture) {
if ($belowTop) $headlevel = 'h3';
else $headlevel =
'h2';
echo "nt";
// if ($this->mainpicture != '') echo "
ntt"; echo "ntt$title ";
// The following three lines create RSS links -
now controlled by config
if ($this->repository->Show_RSS_feeds) {
$rssurl = $this->repository->RemositoryBasicFunctionURL('rss');
$this->
interface->addCustomHeadTag(""); echo "".$this->repository->RemositoryImageURL('
feedicon16.gif',16,16)." RSS"; }
// End of RSS link code
echo ""; echo "nt"; echo "ntn"; if (!$belowTop AND $this->
repository->preamble) echo repository->preamble}
PREAMBLE;
}
}*/
|
in ../components/com_remository/v-classes/remositoryFileListHTML.php function fileListHTML comment out or delete:
| Code: | /*$this->mainPageHeading($container->id);*/
|
in components/com_remository/remository.css comment out or delete:
| Code: | /*#remositorypageheading {
background-repeat: no-repeat;
background-position:
left;
}*/
|
| Code: | /*#remositorypageheading h2,
#remositorypageheading h3 {
margin-left: 72px;
text-align: left;
line-height: normal;
}*/
|
| Code: | /*#remositorypageheading {
width: 98%;
text-align: left;
padding:
10px 10px 20px 0;
}*/
|
| Code: | /*#remositorypreamble {
padding: 5px;
}*/
|
also find:
| Code: | #remositorypathway img,
#remositorycontainer img,
#remositoryfilelisting div img,
#remositorycontainerlist img,
#remositorypageheading h2 img,
#remositorypageheading h3 img,
#remository h4 img {
border: 0;
padding: 2px;
}
|
and adjust for:
| Code: | #remositorypathway img,
#remositorycontainer img,
#remositoryfilelisting div img,
#remositorycontainerlist img,
#remository h4 img {
border: 0;
padding: 2px;
}
|
Post edited by: chrissy6930, at: 2008/10/17 20:50
|