I got sick of waiting around for the bug I screenshotted to be squashed, so I put together a simple solution (Firefox only, though I'm sure there are equivalents), using the Stylish Add-on.
On that note, since you can change the appearance of pretty much anything you want, I've made a separate thread where people can share and request custom styles. I'll put up a general guide for using the Stylish add-on, then just post code snippets after that.
An example of a custom style
This is the code I used to hide the annoying Deleted Posts and Attachment icons.
1. Install the Stylish Add-on and restart Firefox.
2. Open up juventuz.com
3. Right-click the Stylish icon in the bottom-right corner (the S in a box) and go to Write new style -> for juventuz.com
4. Erase everything in the the box and paste the following code:
4. Give the style a name and save it.
5. Voila!
On that note, since you can change the appearance of pretty much anything you want, I've made a separate thread where people can share and request custom styles. I'll put up a general guide for using the Stylish add-on, then just post code snippets after that.
An example of a custom style
This is the code I used to hide the annoying Deleted Posts and Attachment icons.
1. Install the Stylish Add-on and restart Firefox.
2. Open up juventuz.com
3. Right-click the Stylish icon in the bottom-right corner (the S in a box) and go to Write new style -> for juventuz.com

4. Erase everything in the the box and paste the following code:
Code:
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("juventuz.com")
{
div.threaddetailicons
{
display:none;
}
}

4. Give the style a name and save it.
5. Voila!

