I have a CI / Blueprint CSS issue—or maybe I’m an idiot. I am using the following to get a refernces to my “screen.css” file:
<?php
$this->load->helper(‘url’);
?>
...then…
<link rel=“stylesheet” href=”<?=base_url()?>css/blueprint/screen.css” type=“text/css” media=“screen, projection”>
The problem seems to be that “screen.css” imports these other CSS files, thus:
@import ‘lib/reset.css’;
@import ‘lib/typography.css’;
@import ‘lib/grid.css’;
@import ‘lib/forms.css’;
...and I am pretty certain that these are not getting imported as my VERY simple Blueprint layout is not rendering at all.
Any help at all would be of great assistance.