I am using a breadcrumb BS4 like this (fa latest version)
.breadcrumb > li + li:before {
font-family: 'FontAwesome';
content: '\f105';
padding: 0 10px;
color: rgba(255, 255, 255, 0.7);
font-weight: normal;
}
but > icon is not appears... When I used previous version of font-awesome, it works perfectly. Can someone tell me the solution
Take a look at this; your issue should be because of the font-family your using, which should be Font Awesome 5 Free
for the free version, or Font Awesome 5 Pro
for the Pro version.
Font weight also needs to be 900
on the free version since those are the only icons that can be used.
.breadcrumb li {
font-family: 'Font Awesome 5 Free';
font-weight: 900;
}
.breadcrumb li:before {
content: '\f105';
}
<link href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" rel="stylesheet" />
<div class="breadcrumb">
<li></li>
<li></li>
<li></li>
<i class="fas fa-angle-right"></i>
</div>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With