mjyazdani
mjyazdani

Reputation: 2035

There is no message icon in bootstrap 3

I use Bootstrap v3.1.1 (http://getbootstrap.com) and I want to use icon-message-* from the icons that is listed here , but there is no such classes in bootstrap. how should I use them?

I addedd this lines to head part:

  <link href="css/bootstrap.css" rel="stylesheet" />
  <link href="css/bootstrap-theme.min.css" rel="stylesheet" />

and this is the code that I want to use... but there is no css class for "icon-message-new"

   <span class="glyphicon icon-message-new"></span>

Upvotes: 2

Views: 2977

Answers (2)

user3064303
user3064303

Reputation: 81

Hers is the message icon in Bootstrap:

<i class="glyphicon glyphicon-envelope"></i>

I will recommend to use Fontawesome http://fontawesome.io/icons/ rather than Bootstraps's Glyph-icon . Font awesome has 479 icons free to use.

Upvotes: 3

Dorvalla
Dorvalla

Reputation: 5240

Bootstrap doesn't provide the full glyphicons. It has included just 200, and the one you refer to is not listed at the ones bootstrap supports (see the http://getbootstrap.com/components/#glyphicons link fo those details)

To get the complete glyphicons you want, grab them from Github. It's even listen on the page you linked us too.

https://github.com/marcoceppi/bootstrap-glyphicons

Upvotes: 0

Related Questions