Not sure if I’m alone but I wanted to hide the upvote buttons and counts, as I don’t plant to use them and they make it a little visually difficult to read the forum thread titles.
So here’s a Stylish (Chrome, Firefox) script to hide the upvote counts in the forums and also within a thread:
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("forums.unrealengine.com") {
div.thread_vote_wrapper, div.post_vote_wrapper
{
display: none
}
}