Flash 和交替显示在 Firefox 中,在 IE 中只有错误 (sIFR)
我刚刚在我的 Magento 商店中安装并设置了 sIFR。示例页面如下:
http://www.mint-creative.co.uk/ shop
您可以看到它出色地加载了标题,但仍然显示备用的纯文本标题。我已经四次检查了 .css 文件,我认为一切都加载正常。另外,在 IE 中它根本不显示,并且根据 IE8 中的错误日志,每个 .css 和 .js 文件都有错误。
对此的任何帮助都会很棒,因为这是一个紧急项目!
干杯。
I've just installed and setup sIFR on my Magento store. An example page can be seen here:
http://www.mint-creative.co.uk/shop
And you can see it loads the heading brilliantly, but still displays the alternate text-only headline. I've quadruple checked the .css files and everything's loading ok I think. Also, in IE it doesn't display at all and every .css and .js file has an error according to the error log in IE8.
Any help on this would be great as it's an urgent project!
Cheers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
CSS 文件中存在解析错误。尝试验证它们,看看会发生什么。
There's a parse error in the CSS files. Try validating them and see what comes up.
这是 IE8 的一个已知问题。最好的办法是将其放在标题中
<元 http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
(由于某种原因,我必须在 < 之后添加一个空格才能使其显示,因此请确保删除该空格)
它会解决您的问题。
我还会尝试使用 Cufon 或 Font-face 而不是 sIFR。
This is a known issue with IE8. The best thing to do is put this in your header
< meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
(I had to add a space after < to get it to show up for some reason so make sure you delete that space)
It'll fix your problem.
I'd also try Cufon or Font-face over sIFR.