I have an issue with the CSS colours in IE on WP8.1. The device I have to hand that I'm testing with is a Lumia 635.
In short, none of the colours set in the stylesheet show at all (be it background colours, font colours, link colours, etc). They do however work on every other device I've tested this on, as well as the desktop browsers (including IE).
There seems to be no issue with the media queries or any of the rest of the CSS, it's just the colours. Here is the website, or I can post a simplified version of the code if preferred:
http://bulgarian-translation-uk.com/
Any help or suggestions where this might be coming from would be highly appreciated. I seriously doubt that it's relevant to the issue in any way, but the site running on a ColdFusion app server.
Thank you in advance!
Edit: Here is some simple code that illustrates the problem - it won't even display basics like background colour, but has no problem with anything else. I've uploaded the exact same code to following test page as well:
http://bulgarian-translation-uk.com/bg/test/
body {
background-color:#000000;
}
body, .text {
color:#ffffff;
font-size:25px;
font-family:"Times New Roman", Times, serif;
text-decoration:none;
filter:none !important;
}
a, .text a {
color:#0a591d;
text-decoration:underline;
filter:none !important;
}
.text {
text-align:center;
margin-top:50px;
padding:0;
}
<div class="text">
Test <a href="#">Test</a>
</div>