your background on #wrapper (the white area) is
background: rgba(255, 255, 255, 1);
Internet explorer is really lame, and doesn’t support rgba until IE10 (or maybe ie9), so do:
background: white;
or
background:#fff;
or
background: #ffffff;
or
background: rgb(255,255,255)
just not rgba
Thanks for the response – but when I look through firebug it shows as background-color: #FFFFFF; – So I am not sure what it is I need to change?
That is the what I see under the #wrapper div.
OK – I think I found it – Firebug is not showing truly what is in the style.css – when I looked at the wapper div (in editor) in the style CSS it does indeed show what you stated.
I will get those affected to re-check the site now I have made the change.
Going forward – how did you read that code? As I say firebug showed a different code set – I guess it own interpretation of the code?