FYI, I managed to trim a couple more seconds off page loads by modifying this:
http://www.vbulletin.com/forum/showthread.php?t=306573
If you wanted to you could add a line in there to make the css file read off of a dynamic bucket simplecdn. This way you wouldn't have to upload a new css file every time you want to change something:
Code:
// HACK : START : CSS AS LINK
if ($vbulletin->options['storecssasfile']) {
$cssfilename = 'http://cdnlink.com/clientscript/vbulletin_css/style-' . $adblock_is_evil . '-' . str_pad($styleid, 5, '0', STR_PAD_LEFT) . '.css';
$fullcsstext = '<link rel="stylesheet" type="text/css" href="'.$cssfilename.'" /><link rel="stylesheet" type="text/css" href="http://cdnlink.com/clientscript/vbulletin_important.css?v='.$vbulletin->options['simpleversion'].'">';
}
// HACK : END : CSS AS LINK
but then, like mentioned the WYSIWYG editer doesn't work correctly - I can't figure that one out.