• Ratings list dropdown - number of ratings and people listed don't always match
    4 replies, posted
On the dropdown ratings menus, the number of people listed and the actual people in the list don't seem to always match up. This is something I've been seeing semi-frequently for the past few days. https://i.imgur.com/EfeSFzt.png https://i.imgur.com/lw04Rgk.png https://i.imgur.com/NKm8O8u.png
They match, but if a name is too long it goes to a new line.
"ChadTheGman2016" is one person, as is "The One Free-Man"
I'm astonished that I didn't catch that. I was just blindly counting lines.
Don't worry at first glance anyone would do it, if you want a somewhat partial fix that cleans it up I recommend the following. /* Why is Garry using non-standard word-break functions? this destroys it on anything but Chrome */ body {     word-break: normal; } /* Splits up the usernames on rating lists */ .votes .votelist .voteinfo .votedetail span {     margin: 0px 0px 5px 0px; } The first resolves a load of the word breaking issues on the forums on browsers other than Chrome, and the last does this. http://horobox.co.uk/u/reag/2018-04-08_04-23-25.png It just splits the names up a tiny bit more making it more clear which is a new name and so on.
Sorry, you need to Log In to post a reply to this thread.