您的@ font-face似乎有一個名爲'helvetica_neueregular'的字體家族,而且我沒有看到爲您的導航設置的字體,但是在其他任何地方如果添加'helvetica_neueregular'則會加載字體。至於瀏覽器的一致性在Chrome開發工具中,它看起來像缺少一些字體瀏覽器類型來提供全面的瀏覽器支持。
http://inauguralseason.com/wp-content/themes/twentyeleven/style.css
@font-face {
font-family: 'helvetica_neueregular';
src: url('helveticaneue-medium-webfont.eot');
src: url('helveticaneue-medium-webfont.eot?#iefix') format('embedded-opentype'),
url('helveticaneue-medium-webfont.woff') format('woff'),
url('helveticaneue-medium-webfont.ttf') format('truetype'),
url('helveticaneue-medium-webfont.svg#helvetica_neueregular') format('svg');
font-weight: normal;
font-style: normal;
}
編輯:這是加載介質的字體,但它叫「helvetica_neuemedium」
該技術使用安裝在用戶的操作系統上的字體經常只是變化。你最好鏈接到你網站的字體,而不是所有的工作。 – jackJoe
你想使用中型或普通版嗎? –
我在我的終端看到了正確的字體。但是,正如@jackJoe所說,你應該鏈接到字體(參見CSS3中的font-face)並提供備用字體。 – qsheets