Display different logo on homepage in Magento
It is recommended by SEOmoz that the homepage logo be only a h1 tag on the homepage, and h3 on all subsequent internal site pages. In your header.phtml, the default magento template uses getIsHomePage() which allows us to replace
1 |
<h1 class="logo"><strong><?php echo $this->getLogoAlt() ?></strong><a href="<?php echo $this->getUrl('') ?>" title="<?php echo $this->getLogoAlt() ?>" class="logo"><img width="377px" src="<?php echo $this->getLogoSrc() ?>" alt="<?php echo $this->getLogoAlt() ?>" /></a></h1> |