completed bug add tag
samcarter
It can happen that the dismiss button for notifications goes off the screen. 

![Screen Shot 2019-12-11 at 10.33.23.png](/image?hash=644ce205f28959152b83222a56c7bbe440f1dddbf510988175fcd4ffea8fd165)

For shorter texts this problem obviously does not occure, but it also works for longer usernames/question titles because in this case a line break is added.  
Top Answer
James Douglas
This has now been fixed. There is now a small red `x` button on the left of every notification:

![Screenshot.png](/image?hash=6a9552a0fb748c5e510cd9a75f7927e534bcb61107075bc2b340793eeaaeb14c)

The time a notification was recieved now comes next, and then the rest of the notification.

I also took the opportunity to upgrade some other notification styles, and add a notification count.
Answer #2
Caleb
On mobile the situation is even more dire. Not just the dismiss link but sometimes the place the notification links to is not even shown.

In general I think there is a fundamental problem with the way HTML + CSS are being written here. I'm sure with some more UI expertise and eyes on the code (hint hint) we could help fix these things, but here's the gist: `overflow: hidden` and `wrap: none` type properties should _never_ be used in any user interface where both the size and content varries wildly. Any interface that assumes those properties will always be playing whack-a-mole with display glitches like this. The line should wrap normally.

Other concesions can be made to minimise the screen realestate userped by any given element, but nothing in an HTML user interface should ever be restricted from wrapping, flowing, and growing as needed to contain it's content. Styles can change responsively depending on the available space, but trucating anywhere active UI elements like links could appear should not be one of the tricks in the toolbox.

This room is for discussion about this question.

Once logged in you can direct comments to any contributor here.

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.