我正在尝试在我的网站上安装阿拉伯字体。以下是我已经采取的步骤,但是字体没有更改。
@font-face {
font-family: 'jf_flatregular';
src:url('fonts/jf-flat-regular-webfont.ttf') format('ttf'),
url('fonts/jf-flat-regular-webfont.woff2') format('woff2'),
url('fonts/jf-flat-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
html[lang="ar"] body {
font-family: 'jf_flatregular';
}
网站的字体已更改为安全字体,即打开Sans,但我的上传字体未加载到网站上。
注意: 1.使用木星主题 2.使用Polylang插件
感谢您的帮助。谢谢
答案 0 :(得分:0)
我安装了另一个插件“ Use any font”,并通过以下代码在阿拉伯网站上应用了该字体:
:lang(ar) {
font-family: fontname !Important;
}
完成!
我找到了这个解决方案,不确定是否应该这样做,但是解决了我的问题。 :)