方法はわかりませんが、Twitterブートストラップグリフィコンを追加して、以下のCSSファイルの画像参照を置き換えたいと思います。
.edit-button {
background: url('../img/edit.png') no-repeat;
width: 16px;
height: 16px;
}
HTMLでは、次のように追加します。
<i class="icon-search icon-white"></i>
何か案は?
更新-Firefoxのfirebugでは幅と高さしか表示されませんが、次のことを試しました。
.edit-button
{
/* background: url('../img/edit.png') no-repeat; */
background: url(../img/glyphicons-halflings.png) no repeat -96px -72px !important;
width: 16px;
height: 16px;
}
なぜそれが拾われていないのか分かりませんか?