After a few days playin' with mle module, and serching through this board, I come up with problem with styling different languages. I've read topics written by Alby regarding this, I succed in some basic styling.
For example, I can change the colors of the body text:
body{ ..... } common styles are here
#body_en_US { color: #666666; }
#body_rs_RS { color:#333333; }
#body_fr_FR { color:#999999; }
and in temlate I have it works fine.
Also I made different header image for every language, with , also works very nice.
Now I have to make different link colors for every language, and I just dont't get it right. I tried to use something like this in stylesheet:
#a:hover_en_US {
text-decoration: underline;
background-color: inherit;
color: #dc2828;
}
the same for other languages...
Nothing actually happens, ie when I cut the hover state in the main body style I get nothing, no underline etc.
What is the right syntax for this, obviously I'm missing something here?
Also, I need some advice how to apply different style colors for menu items.
First, I have a horizontal menu, like this in template:
The stylesheet is modified "Navigation: Simple - Horizontal" menu.
Now I want to have different colors for different languages, for mouse over. This is part which has to be changed, in the menu sheet:
div#menu_horiz li a:hover {
background-color: #45A2DD;
color: #fff;
text-align: center;
height: 18px;
}
So I want to change background color for every of three languages, but don't know how..
Sorry for bothering, and thank you very much

Darko