Sifr Wordpress 插件:禁用 IE6?

发布于 2024-09-10 13:23:56 字数 434 浏览 4 评论 0原文

我在一个网站上运行了 sifr wordpress 插件,效果很好。然而,在 IE6 中,对于正文中的标题,当 sifr 打开时,它会在标题顶部放置一个大的填充/边距...例如 150px 左右。

由于我没有实际安装 IE6,因此我一直在 Adob​​e 浏览器实验室进行预览。

我想在真实浏览器的这些标题上保留 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

唠甜嗑 2024-09-17 13:23:56

我会尝试将插件的压缩 sifr.js 替换为 同一版本的完整版本。然后你可以在 sIFR.activate() 调用之前添加此内容:

sIFR.ua.supported = sIFR.ua.supported && (!sIFR.ua.ie || sIFR.ua.ieVersion > 6);

要解决本地 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:

sIFR.ua.supported = sIFR.ua.supported && (!sIFR.ua.ie || sIFR.ua.ieVersion > 6);

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...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文