Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am very disappointed that my 3 hour template design is not cross-browser compatible. Why is this? well, because my header background color is not displaying correctly in IE:

I thought at first that the problem was created by a bad read of padding/margin or other metrics of Internet Explorer (but it was not, I checked and the metrics are perfectly fine)

The only problem is that IE somehow modifies the color of my header's background.

Note: This problem ONLY happens on Internet Explorer (I have tested on Chrome, FF, Opera and Safari)

Here is a screenshot:

enter image description here

I am not sure why, but here is the CSS:

#header{
background:#5BA2D9 url('./images/header_bg.png') repeat-x left bottom;
min-height:90px;
}

My question: does IE modifies the color of my images? Why? How can I avoid this?

share|improve this question

1 Answer

up vote 4 down vote accepted

I believe this is a result of color correction information in the PNG files.
Optimizing the PNG files should fix it.

See here for more info.

share|improve this answer
The link couldn't be more useful! Thanks – ajax333221 Dec 18 '11 at 1:35
Thanks, (again), I feel bad I can only upvote 1 time. Edit: It worked, it is working on IE, your theory was accurate – ajax333221 Dec 18 '11 at 2:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.