Hab es hinbekommen.
Logo und Titel lassen sich über Template-Parameter ändern / steuer.
Die Angaben in der index.php bzw bei ja_purity_ii in der header.php lautet wie folgt:
PHP-Code:
<h1 class="logo">
<div id="logo">
<?php if (($this->params->get('headerlogo')) !=1) : ?>
<a href="index.php" title="<?php echo $this->params->get('information'); ?>"><span><?php echo $siteName; ?></span>
<img alt="Logo" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/images/headerlogo/<?php echo $this->params->get('headerlogo');?>"/></a>
<?php endif;?>
</div>
</h1>
Ergänzun damit es im ie auch funktioniert:
PHP-Code:
<h1 class="logo">
<div id="logo">
<?php if (($this->params->get('headerlogo')) !=1) : ?>
<a href="index.php" title="<?php echo $this->params->get('information'); ?>"><span><?php echo $siteName; ?></span>
<img alt="<?php echo $this->params->get('information'); ?>" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/images/headerlogo/<?php echo $this->params->get('headerlogo');?>"/></a>
<?php endif;?>
</div>
</h1>
Hier die Änderung:
<img alt="<?php echo $this->params->get('information'); ?> (zum verdeutlichen)
Gruss Nasenwiesel
Lesezeichen