There is sometimes an issue in IE7 and IE8 when you click on the navigation that you get a white flash or the pages seems to reload momentarily giving the web pages a “jaggy” transition.
There are a few things you can try to solve the issue:
1) IE renders the page before all CSS has loaded. Solution: Include an empty script-element BEFORE the stylesheets.
Add:
+++
<script type=”text/javascript”>
</script>
+++
2) Include meta-tags for page-enter and page-exit transitions:
Add:
+++
<meta http-equiv=”Page-Enter”
content=”RevealTrans(Duration=0.1,Transition=0)” />
<meta http-equiv=”Page-Exit”
content=”RevealTrans(Duration=0.1,Transition=0)” />
+++
3) IE chokes on the content-type meta-tag; remove it.
4) Minimize CSS and JS files.
5) change background-color of body or html