Hi!
How to change the logo on the multilingual site with falang (News refreshed)
Regards
Joachim
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);
}
<?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;
?>