Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change default separator icon in Bootstrap 3 Breadcrumbs?

Tags:

Is there a way that i can change the default separator ("/") with a custom icon in Bootstrap 3 breadcrumbs?

like image 862
adw Avatar asked Nov 07 '14 09:11

adw


People also ask

How do I change breadcrumb separator in bootstrap?

They can be changed by modifying a local CSS custom property --bs-breadcrumb-divider , or through the $breadcrumb-divider Sass variable — and $breadcrumb-divider-flipped for its RTL counterpart, if needed. We default to our Sass variable, which is set as a fallback to the custom property.

How do I change the color of breadcrumbs in bootstrap?

Go to Customizing Bootstrap page. Move to Breadcrumbs section. Override the default value of @breadcrumb-active-color varaible with the value that you need i.e. #000 . Move to Download section and press "Compile and Download" Button.

How do I add breadcrumbs to bootstrap?

Bootstrap By Building Projects - Includes Bootstrap 4 Breadcrumbs are a great way to show hierarchy-based information for a site. In the case of blogs, breadcrumbs can show the dates of publishing, categories, or tags. They indicate the current page's location within a navigational hierarchy.

What is the significance of using breadcrumb in bootstrap?

Indicate the current page's location within a navigational hierarchy that automatically adds separators via CSS.


1 Answers

This is not icon, you can add what ever you want, icon, image etc.

.breadcrumb > li + li:before {     color: #ccc;     content: "/ ";     padding: 0 5px; } 

Change content to " >> " and see

like image 103
Miomir Dancevic Avatar answered Sep 21 '22 09:09

Miomir Dancevic