3 replies [Last post]
seanbaldwin
Offline
newbie
Last seen: 18 years 48 weeks ago
Joined: 2004-04-28
Posts: 3
Points: 0

Wink

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

ClevaTreva
ClevaTreva's picture
Offline
Guru
A hilly place, UK
Last seen: 4 years 21 weeks ago
A hilly place, UK
Joined: 2004-02-05
Posts: 2902
Points: 0

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

seanbaldwin
Offline
newbie
Last seen: 18 years 48 weeks ago
Joined: 2004-04-28
Posts: 3
Points: 0

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.

seanbaldwin
Offline
newbie
Last seen: 18 years 48 weeks ago
Joined: 2004-04-28
Posts: 3
Points: 0

I.E 5 Mac compatibility issues

Worked!!!!!!!!!

Brilliant - Thanks again.

Sean.