bootstrap changing the separator

Solutions on MaxInterview for bootstrap changing the separator by the best coders in the world

showing results for - "bootstrap changing the separator"
Diane
02 May 2016
1Separators are automatically added in CSS through ::before and content. 
2They can be changed by changing $breadcrumb-divider. The quote function is
3needed to generate the quotes around a string, so if you want > as separator,
4you can use this:
5
6$breadcrumb-divider: quote(">");
7
8It’s also possible to use a base64 embedded SVG icon:
9
10$breadcrumb-divider: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiPjxwYXRoIGQ9Ik0yLjUgMEwxIDEuNSAzLjUgNCAxIDYuNSAyLjUgOGw0LTQtNC00eiIgZmlsbD0iY3VycmVudENvbG9yIi8+PC9zdmc+);
11
12The separator can be removed by setting $breadcrumb-divider to none:
13$breadcrumb-divider: none;