Erwin Heiser wrote:
> http://www.readshotel.com/index.php/hotel/about/en/
> http://www.readshotel.com/index.php/hotel/about/es/
> http://www.readshotel.com/index.php/hotel/about/de/

> http://www.readshotel.com/index.php?css=main/core.css
>  
> Does anyone have any suggestions regarding the following problem: the
> (unsightly but client wants it that way)  red banner should change language
> when you switch the language in the upper right corner (en - es - de). It's
> just a different background image for each language.
> This happens correctly in every browser except IE6 which only displays this
> background image on the english page but refuses to do so on the spanish and
> german page...


#comm.en {
background-image: ...
}

#comm.es {
background-image: ...
}

#comm.de {
background-image: ...
}


<div id="comm" class="es"></div>


IE Win will look into the first rule of #id.class only, but if the class 
does not match, IE will refuse to look further in other #id.class rules.

It's called the the multiple #id.class bug
   http://css-discuss.incutio.com/?page=InternetExplorerWinBugs
   http://sonspring.com/index.php?id=102

Ingo

-- 
http://www.satzansatz.de/css.html
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to