请原谅我的无知,但我的头开始旋转,试图弄清楚这一点。
我的 wordress 网站与我使用的 google webfont 配合得很好。但后来我注意到它在 Internet Explorer 中看起来非常褪色。经过一番谷歌搜索后,我发现一种解决方案可能是使用“工具包”来代替,例如来自 fontsquirrel(尽管我不知道这是否属实)。所以我得到了我的字体的“webkit”。我将 .eot、.woff、.ttf 和 .svg 文件上传到我的子主题文件夹中名为“fonts”的文件夹中。然后我从 webkit 的样式表中获取代码并将“/fonts”添加到每个 url 行(见下面的代码),并将代码粘贴到自定义 CSS 部分(我的子主题在通用字体部分旁边有一个自定义 CSS 框)。这不会在任何地方显示我的 Gruppo 字体,更不用说 Internet Explorer。我是否按照正确的步骤使我的字体在 Internet Explorer 中看起来不褪色?如果是这样,
@font-face {
font-family: 'grupporegular';
src: url('/fonts/gruppo-regular-webfont.eot');
src: url('/fonts/gruppo-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('/fonts/gruppo-regular-webfont.woff') format('woff'),
url('/fonts/gruppo-regular-webfont.ttf') format('truetype'),
url('/fonts/gruppo-regular-webfont.svg#grupporegular') format('svg');
font-weight: normal;
font-style: normal;
}