Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
No CSS stuff in Vanilla core files, please ;)
This discussion has been closed.
Comments
Regardless, you can most definitely easily remove the css from Vanilla. The css is included by a method on the head control. To get rid of all css files, just do this in an extension:
$Head->ClearStyleSheets();
To add different stylesheets, do this:
$Head->AddStyleSheet($Location);
To see all of the methods available in the head control, check out:
http://lussumo.com/svn/framework/tags/Framework-1.0.1/Framework.Control.Head.php