At the moment I’m having issues with IE for font colors. In my CSS I’ve specified color but for some reason IE is ignoring this.
http://www.james-hayward.com/property_type/for-sale/
color is set here:
.entry-info a {
color: #663399;
cursor: pointer;
}
This appears to be for all versions of IE (so the usual IE6/7/8 fixes seem useless)
you have your rule the wrong way round, it should be
a .entry-info.. but the way you’ve written it is bad in my opinion.This might work