I'm pretty conservative with screen space, and didn't really like that the forums are contained within a 80%-width div. The pages were hard to read because they got squashed together, so I wrote a quick GreaseMonkey script to make the main content div use the entire width of the screen (I think I suffer from horror vacui):
While I think the site should be served this way by default, I can accept that it's simply an aesthetic issue and probably won't be changed. Just thought I'd share the script in case anyone else felt similarly. Figured I'd drop it here in the feedback section, simply because it seems like the most appropriate place for forum meta-discussion.
Code:
// ==UserScript==
// @name FreeBSD Forums Full-Width
// @namespace hark
// @include http://forums.freebsd.org/*
// ==/UserScript==
(function () {
var divs = document.getElementsByTagName( 'div' );
for ( var i in divs ) {
var div = divs.item( i );
if ( div.className == 'page' )
div.style.width = '100%';
}
})();