我有两个网站使用相同的 @font-face 代码。字体文件托管在各自的站点上,并且路径正确。
一个有效,一个无效。(当然它适用于我的个人网站而不是客户!)
我真的很感激对此有一些新的看法!
它在哪里工作:
CSS 文件:http: //365.example.com/index.php?css=photos/ style.v.1275845154
相关代码:
@font-face {
font-family: 'JournalRegular';
src: url('./themes/fonts/journal.eot');
src: local('Journal Regular'), local('Journal'), url('./themes/fonts/journal.ttf') format('truetype');
}
body{
background: url("http://labs.example.com/personal/library/images/BG.jpg");
height: 100%;
width: 100%;
margin: 0;
padding: 0;
font-family: 'JournalRegular', Georgia, 'Times New Roman', Times, sans-serif;
color: #999;
}
它不起作用的地方:
CSS 文件:http ://www.example.org/wp-content/themes/theme/style.css
相关代码:
@font-face {
font-family: 'JournalRegular';
src: url('http://example.org/wp-content/themes/theme/fonts/journal.eot');
src: local('Journal Regular'), local('Journal'), url('http://example.org/wp-content/themes/theme/fonts/journal.ttf') format('truetype');
}
.title h1{
float:left;
background:url(images/blt-ttl1?.png) no-repeat 0 4px;
margin:0px 0 5px;
/* padding:8px 0 8px 34px; */
color:#bd5f01;
letter-spacing: .5pt
font:24px/26px 'JournalRegular', Georgia, 'Times New Roman', Times, serif;
}
任何帮助将不胜感激!