Somewhat related to the forum upgrade, albeit not a suggestion for the forum itself:
For those who want to see avatars in their original size if they're smaller than 120x120px (and have a browser capable of interpreting the max-width/max-height attribute), this seems to work fine in current versions of Firefox at least:
Search for the file userContent.css, and add the lines:
[code]
@-moz-document domain(adventuregamestudio.co.uk) {
li.avatar a img.avatar {width:auto !important; height:auto !important; max-height:120px; max-width:120px;}
div#basicinfo div div img.avatar {width:auto !important; height:auto !important;}
}[/code]
The second line overrides the mandatory scaling and replaces it with a maximum size (aspect ratio is kept automatically), the third line lets you display avatars in their original size on the profile pages if you wish that (e.g., Dualnames' Bladerunner scene shows up there in all its 500px wide glory). The first line ensures that these options only affect the AGS site.
While you're at it, if you haven't done it yet, you might also want to add the line
[code]img.bbc_img[src$=".png"], img.bbc_img[src$=".gif"], img.bbc_img[src$=".PNG"], img.bbc_img[src$=".GIF"] {image-rendering: -moz-crisp-edges;}[/code]
to remove the blurriness from upscaled screenshots or pixel-art in the Critics Lounge.
Edit: Oh, this second bit might as well work as a suggestion for the forums.
Here it was suggested a while ago to make a new [pixelart][/pixelart] bbcode to post images that don't get blurry, since the above CSS is only a heuristic substitution that may affect also some photos where smooth interpolation is desired. Now is a good time to bring that up again. Is it doable?
