-3

此页面上表单标签中的字体 - http://bakebox.in/order-form/必须与此页面中的相同 - http://bakebox.in/test/ 我尝试使用相同的字体标签对于两者,但它不起作用

font: 300 18px 'BebasNeueRegular', Arial, sans-serif;
4

1 回答 1

0

您可能缺少@font-face工作版本中的声明:

@font-face {
    font-family: "BebasNeueRegular";
    font-style: normal;
    font-weight: normal;
    src: url("BebasNeue/BebasNeue-webfont.eot?#iefix") format("embedded-opentype"), url("BebasNeue/BebasNeue-webfont.woff") format("woff"), url("BebasNeue/BebasNeue-webfont.ttf") format("truetype"), url("BebasNeue/BebasNeue-webfont.svg#BebasNeueRegular") format("svg");
}

在 wp-content/themes/in-motion/style.css 样式表中。

于 2012-10-08T22:16:52.810 回答