Hallo zusammen,
ich habe absolut keine Ahnung von Html und all den sachen darum hoffe ich das ihr mir helfen könnt. Ich bin dabei mir mit Joomla eine HP zu erstellen und würde gerne folgende sache aus dem Code entfernen, damit dies auf der Seite nicht mehr zu sehen. Also es handelt sich um folgendes…
Siehe Anhang, entweder das rote oder das blaue Kästchen zu entfernen.
Der Code:
[code]<?php // no direct access defined( '_JEXEC' ) or die( 'Restricted access' ); ?>
<?php // Remove auto generated mootool from header $headerstuff = $this->getHeadData(); reset($headerstuff['scripts']); $moo = key($headerstuff['scripts']); unset($headerstuff['scripts'][$moo]); $this->setHeadData($headerstuff); ?> <?php if($this->params->get('SlideShow') == 'enable' ) : ?><script type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/_class.viewer.js"></script>
<script type="text/javascript">//<![CDATA[
window.addEvent('domready',function(){
var RetroViewer = new viewer($$('#img-viewer img)'),{
mode: 'alpha',
interval: 5000
});
RetroViewer.play(true);
});
//]]></script>
<?php endif; ?>
<div id="header-top">
<a href="<?php echo JURI::base(); ?>" title="<?php echo $mainframe->getCfg('sitename');?> - Home" ><img class="logo" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/images/logo.png" alt="<?php echo $mainframe->getCfg('sitename');?> - Home" /></a>
</div>
<div id="header-bottom">
<div id="img-viewer">
<div class="mask">
<jdoc:include type="modules" name="slideshow" />
</div>
</div>
</div>
<div id="topmenu">
<div id="topmenu-content">
<jdoc:include type="modules" name="topmenu" />
</div>
</div>
<div id="topmenu-spacer"></div>
´
<div class="top-module-left">
<jdoc:include type="modules" name="user1" style="r3tro" />
</div>
<div class="top-module-center">
<jdoc:include type="modules" name="user2" style="r3tro" />
</div>
<div class="top-module-right">
<jdoc:include type="modules" name="user3" style="r3tro" />
</div>
</div>
<div class="clear"></div>
<div id="breadcrumb">
<jdoc:include type="modules" name="breadcrumb" style="r3tro" />
</div>
<?php if($this->countModules('left')) : ?>
<div id="left">
<jdoc:include type="modules" name="left" style="r3tro"/>
</div>
<?php endif; ?>
<?php if($this->countModules('left and right')) : ?>
<div id="center">
<?php elseif($this->countModules('left')) : ?>
<div id="center-withleft">
<?php elseif($this->countModules('right')) : ?>
<div id="center-withright">
<?php else : ?>
<div id="center-full">
<?php endif; ?>
<div class="box-left">
<div class="box-top">
<div class="box-topleft">
<div class="box-right">
<div class="box-topright">
<div class="box-bottom">
<div class="box-bottomleft">
<div class="box-bottomright">
<div class="box-content-center">
<jdoc:include type="component" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php if($this->countModules('right')) : ?>
<div id="right">
<jdoc:include type="modules" name="right" style="r3tro" />
</div>
<?php endif; ?>
<div class="clear"></div>
<div id="footer-top">
<div id="footer">
<div class="footer-left">Powered by <a href="http://www.joomla.org">Joomla!</a></div>
<div class="footer-center">
<a href="http://www.semecreativo.it" title="SemeCreativo Design" >
<img class="img-noborder" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/images/semecreativo.png" alt="SemeCreativo Design" /></a>
</div>
<div class="footer-right">Credits:
<a href="http://www.themeslive.com" title="ThemesLive" >ThemesLive.com</a> -
<a href="http://www.semecreativo.it" title="SemeCreativo Design" >SemeCreativo.it</a>
<a href="#top" title="Top of the Page" ><img class="img-noborder" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/images/top.png" alt="Top of the Page" /></a>
</div>
</div>
</div>
<div id="footer-bottom">
<div id="footer-joomla">
<jdoc:include type="modules" name="footer" />
</div>
</div>
<a class="peel" href="http://www.themeslive.com" title="ThemesLive - Joomla Templates" ></a>
<?php endif; ?>
[/code]
Vielen lieben DANK für eure hilfe.
Gruß G-Air