Having Issue on Over Writing Bootstrap 3 Breadcrumbs Separator

时间:2015-07-31 20:41:48

标签: twitter-bootstrap twitter-bootstrap-3

I am trying to change the Bootstrap 3 Breadcrumbs Separator from / to glyphicon glyphicon-arrow-right enter image description here by using the following rule

.breadcrumb > li + li:before {
    content: "\e092" !important;
}

but the result is empty square instead of arrow! Please take a look at the demo and let me know why this is not working?

DEMO

1 个答案:

答案 0 :(得分:2)

你需要在你的css代码中添加font-family:

.breadcrumb > li + li:before {
    font-family: 'Glyphicons Halflings';
    content: "\e092" !important;
}

最佳。