Hi
Depends what method You are using. If it's css logo than You may simply overwrite css with url to different logos:
- Code: Select all
html[lang="pl"] #gkLogo {
background-image: url(path_to_image/logo_pl.png);
}
html[lang="en"] #gkLogo {
background-image: url(path_to_image/logo_en.png);
}
If it's an image option than a change to /layout/blocks/logo.php will be required:
- Code: Select all
<?php
switch( $this->API->get('lang') ):
case "en-GB":
$logo_image = 'logo_en.png';
break;
case "pl-PL":
$logo_image = 'logo_pl.png';
break;
endswitch;
?>