It's not that strange, this code:
Code:
#subnav a:link, a:visited {
color:#43125f;
display:block;
}
#news a:link, a:visited {
color:#43125f;
display:block;
}
was targeting all anchor tags on you page, I believe what you meant was:
Code:
#subnav a:link, #subnav a:visited {
color:#43125f;
display:block;
}
#news a:link, #news a:visited {
color:#43125f;
display:block;
}
or even simpler:
Code:
#subnav a:link, #subnav a:visited, #news a:link, #news a:visited {
color:#43125f;
display:block;
}
So what are the IE problems?
Bookmarks