JA Fedora模板在IE 8下显示混乱,具体的解决办法如下:
在Template/ja_fedora目录的index.php文件中找到如下代码:
<!–[if gte IE 7.0]>
<style type=”text/css”>
.clearfix {display: inline-block;}
</style>
<![endif]–>
修改为:
<!--[if lte IE 7.0]>
<style type="text/css">
.clearfix {display: inline-block;}
</style>
<![endif]-->
问题解决。