Reputation: 115
I want to change default icon that appears when I use
<b class="caret"></b>
I want to replace it with some FontAwesome icons. How to do it?
Upvotes: 2
Views: 2207
Reputation: 3733
Use <b class="fa <your preferred fa icon>"></b>
include <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
for the icons.
Upvotes: 2
Reputation: 113
just change the class to fontawesome class. Make sure you have the fontawesome stylesheet
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"/>
<i class="fa fa-caret-down">Caret</i>
Upvotes: 5