A solution has been proposed for making Zurb\'s Foundation 3 Framework work with IE7. Not necessarily complicated support, but certainly grid support.
Solution is presen
The following line in your stylesheet:
*behavior: url(/stylesheets/box-sizing.htc);
translates to the following address:
http://sausag.es/stylesheets/box-sizing.htc
which returns a 404. You could fix this by changing the line to:
*behavior: url(/foundation/stylesheets/box-sizing.htc);
or by moving the box-sizing.htc
file down one folder.