Nice mod. Friendly for those who don't like postbit clutter, but also allows a lot for those info hounds.
DJDarknez: If you haven't found a workaround yet: just add the table code below the title/rank (inbetween the divs), then it won't hide them.
And change this in clientscript/vbulletin_global.js (there's 2 of these) from thead|tcat to your new CSS class names for a different thead and tcat for the postbit...
PHP Code:
if (cel)
{
cel_re = new RegExp("^(thead|tcat)(_collapsed)$");
cel.className = cel.className.replace(cel_re, '$1');
}
Also set the table around 20px larger than the divs inside it. 100% will cause it to shrink and expand to the contents. That way when it opens and closes it won't cause that width expand/shrink movement. Keeps it tidier.
Added: you can also change the table class from tborder to something else to customize the border (easier).
Chris