Sifr Wordpress 插件:禁用 IE6?
我在一个网站上运行了 sifr wordpress 插件,效果很好。然而,在 IE6 中,对于正文中的标题,当 sifr 打开时,它会在标题顶部放置一个大的填充/边距...例如 150px 左右。
由于我没有实际安装 IE6,因此我一直在 Adobe 浏览器实验室进行预览。
我想在真实浏览器的这些标题上保留 sifr,并在插件中禁用 IE6 的这一标题样式或 IE6 的所有 sifr 渲染。这可能吗?
我在文档中找到了有关在标准 sifr.js 中禁用的注释,但我无法在 Wordpress 的 sifr.js 中找到该属性。
!sIFR.UA.bIsIEMac(我想将其更改为 !sIFR.UA.bIsIE6 之类的内容)
Wordpress 插件编辑器像 Dreamweaver 和 TextEdit 一样一起运行所有代码,因此很难找到制作此代码的位置编辑。
I have the sifr wordpress plugin running on a site that works great. However in IE6 for a heading in the body, when sifr is on, it puts a big padding/margin on top of the heading...like 150px or so.
Since I don't have an actual IE6 install, I've been previewing at Adobe Browser Lab.
I'd like to keep sifr on these headings for real browsers and just disable this one headline style for IE6 or all sifr rendering for IE6 in the plugin. Is this possible?
I found a note in documentation about disabling in the standard sifr.js, but I cannot locate the attribute in the sifr.js for Wordpress.
!sIFR.UA.bIsIEMac (I'd like to change it to something like !sIFR.UA.bIsIE6)
The Wordpress plugin edit runs all of the code together as does Dreamweaver and TextEdit, making it tough to find the spot to make this edit.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会尝试将插件的压缩 sifr.js 替换为 同一版本的完整版本。然后你可以在 sIFR.activate() 调用之前添加此内容:
要解决本地 IE 安装问题,你可以查看 evolt 浏览器档案。没有什么比尝试为尚未安装的浏览器编写代码更糟糕的了......
I would try replacing the plugin's compressed sifr.js with a full version of the same build. Then you could just add this before the sIFR.activate() call:
To solve your no local IE install problem, you could check out the evolt browser archives. Nothing worse than trying to code for a browser you don't have installed...