Aj Kumar
Aj Kumar

Reputation: 115

Want to change Default caret icon in Bootstrap3?

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

Answers (2)

Barry
Barry

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

Jonathan
Jonathan

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

Related Questions