Curious issue: CSS classes not working in IE

Hi All,

I am working on a project and have come across a curious problem.

Firefox is styling the classes correctly. IE seems to ignore the classes. Does anyone know why IE is ignoring teh class styling?

http://www.prolabs.eu/index_new2.asp

Thanks

:frowning:

Looks the same in Firefox and IE 7/8 to me. Have you refreshed?

There are some weird things happening in the code near the bottom of the page

E.g.

<div id=\“bottom_bar\” style=\“BACKGROUND-IMAGE: url\(i/bottom_background.gif\);\”>

Hi,

you have a typo here:


.product_text {
    font-family:arial;
    font-size:10px;
   [B] color:#fff;"[/B]
}

It should be:


.product_text {
    font-family:arial;
    font-size:10px;
  [B]  color:#fff;[/B]
}

You have a quote mark at the end that shouldn’t be there which is causing a number of rules to fail :slight_smile:

Screen shots:
http://www.prolabs.eu/error/ie.jpg

http://www.prolabs.eu/error/ie.jpg


That " might have done it.