This is how I include the Blueprint CSS framework in my cake app. NOTE: In $html->css($path, $attributes), the first argument is the path from app/webroot/css. The second argument is html attributes. <?php echo $html->css(array('blueprint/screen', 'blueprint/ie', 'style'), null, array('media' => 'screen, projection')); echo $html->css('print', null, array('media' => 'print')); ?> Results in:
