Show number of notifications on icon



HTML Code:

<div class="container"> <button class="btn btn-default btn-lg btn-link" style="font-size:36px;"> <span class="glyphicon glyphicon-bell green"></span> </button> <span class="badge badge-notify">3</span> </div>

CSS Code:

.badge-notify{ background:red; position:relative; top: -20px; left: -35px; }
Live Demo

Comments