Pablo
Pablo

Reputation: 29519

Customize Magento template

I've installed some theme, which has header logo defined in header.phtml like this:

<img src="<?php echo $this->getLogoSrc() ?>" alt="<?php echo $this->getLogoAlt() ?>" />

I don't really want to alter this template, also in that .phtml file it says not to edit it. How can I override this getLogoSrc most efficiently?

Upvotes: 3

Views: 2549

Answers (2)

Jonathan Day
Jonathan Day

Reputation: 18692

In the web admin, go to System>Configuration>Design and scroll down to Header>Logo Image Src. Insert the filename that you have saved in /skin/frontend/default/new_theme/images/ and click Save.

Upvotes: 4

lock
lock

Reputation: 6614

Go to your template's images folder e.g.: /skin/frontend/default/new_theme/images/

and replace the logo image in that folder with your new Logo

Upvotes: 0

Related Questions