Bootstrap : breadcrumb remove slash?

Viewed 7538

In Bootstrap 3 there is default slash(/) symbol between breadcrumb elements. How to remove it? And I am want to replace '/' with '>'.

Code snippet:

<ol class="breadcrumb">
  <li><a href="#">Home</a><span>></span></li>
  <li><a href="#">Library</a><span>></span></li>
  <li class="active">Data</li>
</ol>

The demo of my code here.

1 Answers
Related