css - bootply bootstrap notification menu include a number at the upper right -


i want use bootstrap notification menu

http://www.bootply.com/oasburc8kz#

but need include number of notifications upper right of glyphicon. read through documentation glyphicon. didn't see option. want similar option linkein has menu options. thanks,

you can see documentation of glyphicon in :

http://getbootstrap.com/components/

and if need number in notifications go badges:

http://getbootstrap.com/components/#badges

just combine both result:

https://jsfiddle.net/0rr2s5t5/

<button class="btn btn-primary" type="button">   <span class="glyphicon glyphicon-user" aria-hidden="true"></span>  <span class="badge">4</span> </button> 

Comments