[eluser]jblack199[/eluser]
are you using .htaccess to block index.php? If you are try this:
Code:
RewriteEngine on
RewriteCond $1 !^(index\.php|css|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
2nd line is where you need to add in the folders you want to grant access to. so if you have css, images, etc folders in your root folder (where they should be), adding that will make the css load.
edit:
just noticed the bottom portion of what you said, cant really help as there isnt an error in the controller. so odds are its malformed html, or a malformed url you're trying to reference. So without the code in the view, we cant really do anything for you.