Hi everyone,
I would like to change my logo depending of the language of the page of my site. I have an English and French bilingual website, and the logo changes for each language, so i'm looking for the right variable or syntax to use to do that.
Example, in php, i can define a language variable and do something like :
">
The result of that is logo_en for the english pages, and logo_fr for the french pages, so now, in the css, i can do something like:
#logo_en{
background: url(images/logo_en.gif);
}
#logo_fr{
background: url(images/logo_fr.gif);
}
So my question is: what should i use to define my language variable depending of the language page?
Please help.
Thanks to all.