09-02-2017, 05:18 PM
(Trying to move the same discussion from 2 threads to 1)
Brandin: "Can we move the number and make it an exponent of the glyphicon? Is this something you can do in HTML/Bootstrap? I think it would look cool and would prefer this over brackets."
How about a bootstrap badge? Something like this (from navigation.php):
Brandin: "Can we move the number and make it an exponent of the glyphicon? Is this something you can do in HTML/Bootstrap? I think it would look cool and would prefer this over brackets."
How about a bootstrap badge? Something like this (from navigation.php):
Code:
<li><a href="portal/'.PAGE_PATH.'#" id="notificationsTrigger" data-toggle="modal"
Code:
data-target="#notificationsModal"><i class="glyphicon glyphicon-bell"></i> <span
Code:
id="notifCount" class="badge" style="margin-top: -5px">
Code:
<?= (($notifications->getUnreadCount() > 0) ? $notifications->getUnreadCount()
Code:
: ''); ?></span></a></li>