Most things in Vanilla aren't floated at all. But it gets difficult to do things without any floats since absolute positioning is kind of unreliable across all browsers and operating systems.
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:
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