最新方法解决JA Teline II模板在IE8中无法居中问题
JA Teline II模板在IE8中无法居中,最新解决方法如下:
open templates/ja_template/index.php file, find following code:
Code:
<!–[if gte IE 7.0]>
<style type=”text/css”>
.clearfix {display: inline-block;}
</style>
<![endif]–>
<style type=”text/css”>
.clearfix {display: inline-block;}
</style>
<![endif]–>
and replace it with this code:
Code:
<!–[if IE 7.0]>
<style type=”text/css”>
.clearfix {display: inline-block;}
</style>
<![endif]–>
<!–[if gte IE 8.0]>
<style type=”text/css”>
.clearfix {display: block;}
</style>
<![endif]–>
<style type=”text/css”>
.clearfix {display: inline-block;}
</style>
<![endif]–>
<!–[if gte IE 8.0]>
<style type=”text/css”>
.clearfix {display: block;}
</style>
<![endif]–>