How can I remove these dots from the Help icon?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2024 01:47 PM
Is there any way I can remove this notification bubble with the three dots from the Help icon?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-12-2024 10:31 PM - edited 09-12-2024 10:35 PM
Not sure but try with UI scripts in lower instances.
If this is really required then contact servicenow support team as it effects globally
(function() {
document.addEventListener('DOMContentLoaded', function() {
// Select the notification bubble and hide it
var notificationBubble = document.querySelector('.notification-bubble-class'); // Adjust selector as needed
if (notificationBubble) {
notificationBubble.style.display = 'none';
}
});
})();