OK, I just did it.
I modified layoutsblocksheader.php like this:
Added:
<?php
if ($this->language == “el-gr”)
$temp_class = “logo” ;
else
$temp_class = “logo_english” ;
?>
And then replaced:
<h1 class=”logo”>
with:
<h1 class=”<?php echo $temp_class; ?>”>
I have also added the following in the csstemplate.css:
h1.logo_english a {
width: 720px;
height: 139px;
display: block;
background: url(../images/header_en.png) no-repeat center center;
}
and modified:
h1.logo, div.logo-text {
to
h1.logo, h1.logo_english, div.logo-text {
and
h1.logo a span {
to
h1.logo a span, h1.logo_english a span {
I hope that this helps anyone that wants to achieve the same!
Thanks,
Yiannis