12-13-2018, 10:42 AM
(This post was last modified: 12-13-2018, 10:43 AM by Moomintroll.)
Hi,
I'm just reviewing a site that I sent live last week, and I wondered if there was a tweak that could be made to the Notifications code that would keep the bubble grey if the count was 0, but turn it to a different colour if the count was >=1?
This is the line in includes/navigation.php (I think):
I added a background-color tag, but I'm not sure how to make it conditional and I'm not brave enough to do too much fiddling with a live site just yet...I'm afraid I'll break it!
I'm just reviewing a site that I sent live last week, and I wondered if there was a tweak that could be made to the Notifications code that would keep the bubble grey if the count was 0, but turn it to a different colour if the count was >=1?
This is the line in includes/navigation.php (I think):
Code:
<li><a href="#" onclick="displayNotifications('new')" id="notificationsTrigger" data-toggle="modal" data-target="#notificationsModal" ><i class="fa fa-fw fa-bell"></i> <span id="notifCount" class="badge" style="margin-top: -5px; background-color: #FF0004;"><?= (int)$notifications->getUnreadCount(); ?></span></a></li>