Help!!!!
I am working on a intranet site and the css works great on Mac I.E 5.1, but on Mac I.E version 5 certain table and background colours change to a bright red and green colour, which I find strange as the only colours used are blue variants.
I wonder if anyone can help?
The css file in question is http://www2.prestontoday.net/sefa/default.css
Thanks,
Sean
I.E 5 Mac compatibility issues
Hi
Mac IE5 has all sorts of color problems in css. The normal one is when using floats, which you don't appear to be, although the table tag has a spurious align:;float:; in it.
However, it sometimes just can't cope with background-colors (or even background-images) when set as background-color or background-image.
Try moving to the composite background attribute instead.
So
.HeaderTable {background-color:#c6c6c6;}
becomes
.HeaderTable {background:#c6c6c6;}
I see you don't use background images anyway.
Trevor
I.E 5 Mac compatibility issues
Hi Trevor,
Thank-you for your feedback!
I will give this a go and let you know the outcome.
Thanks again!
Sean.
I.E 5 Mac compatibility issues
Worked!!!!!!!!!
Brilliant - Thanks again.
Sean.