-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 に答える