注: Font Awesome も使用されています
ナビゲーションバーの左上にあるウェブサイトのブランディングに設定されたグリフィコンを使用しています - 「町で最高の城」と書かれたテキスト。問題は、グリフィコンの Web フォントが読み込まれていないことのようです。代わりに、塔のアイコンがあるはずの場所に小さな四角形が表示されます。タワー アイコンは、ページにある次のマークアップでレンダリングする必要があります。
<span class="glyphicon glyphicon-tower"></span>
http://www.bestcastlesintown.co.uk/prototype/test3.php#.UneSnRDylCj
stylesheet.css の CSS はグリフィコンの使用に適していると思います。
@font-face {
font-family: 'Glyphicons Halflings';
src: url("fonts/glyphicons-halflings-regular.eot");
src: url('fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
.glyphicon {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings';
-webkit-font-smoothing: antialiased;
font-style: normal;
font-weight: normal;
line-height: 1;
-moz-osx-font-smoothing: grayscale;
}
誰でも問題を解決できますか?