2015-08-15 144 views
1

我有我的WordPress的網站上的自定義字體的問題,它只適用於主頁,但是當你去任何像http://domainname.com/about字體停止工作的子頁面。WordPress的:自定義字體不工作

請尋求幫助。

這裏是CSS,我用它來傳遞字體:

@font-face { 
font-family: 'TrajanPro-Bold'; 
src: url("wp-content/fonts/TrajanPro-Bold.otf"); 
src: url("wp-content/fonts/TrajanPro-Bold.otf?#iefix") format('opentype'); 
font-weight: bold; 
font-style: normal; } 

@font-face { 
font-family: 'AVENIRNEXT-BOLD'; 
src: url("wp-content/fonts/AVENIRNEXT-BOLD.OTF"); 
src: url("wp-content/fonts/AVENIRNEXT-BOLD.OTF?#iefix") format('opentype'); 
font-weight: bold; 
font-style: normal; } 

@font-face { 
font-family: 'AVENIRNEXT-ITALIC'; 
src: url("wp-content/fonts/avit.otf"); 
src: url("wp-content/fonts/avit.otf?#iefix") format('opentype'); 
font-weight: normal; 
font-style: italic; } 

@font-face { 
font-family: 'AVENIRNEXT-REGULAR'; 
src: url("wp-content/fonts/AVENIRNEXT-REGULAR.OTF"); 
src: url("wp-content/fonts/AVENIRNEXT-REGULAR.OTF?#iefix") format('opentype'); 
font-weight: normal; 
font-style: normal; } 


@font-face { 
font-family: 'JaneAust'; 
src: url("fonts/JaneAust.ttf"); 
src: url("wp-content/fonts/JaneAust.ttf?#iefix") format('truetype'); 
font-weight: normal; 
font-style: normal; 
} 
+0

添加斜線到您的網址( 「/可溼性粉劑內容...」)? – Eloims

+0

哦,我的...... stiupid我:)謝謝。 – Ganga

回答

2

這是因爲URL wp-content/fonts/TrajanPro-Bold.otf將是相對於當前頁目錄。

通過將前導slash /添加到所有URL,使路徑成爲絕對路徑。

例子:/wp-content/fonts/TrajanPro-Bold.otf

+0

是的;)就像上面說的Eloims,我忘了那:)只是盲目地從我的舊單頁項目複製/粘貼 - 非常感謝你的幫助:) – Ganga