Possible Duplicate:
CodeIgniter - Loading CSS
I try load css file and it's not work. this is the link tag:
<link rel="stylesheet" type="text/css" href="application/styles/style.css" />
how i can do this?
Possible Duplicate:
CodeIgniter - Loading CSS
I try load css file and it's not work. this is the link tag:
<link rel="stylesheet" type="text/css" href="application/styles/style.css" />
how i can do this?
Make a folder outside the application folder Eg: resources/css/style.css and link it like below.
Then the folder structure will be like this,
-application
-resources
-system
-index.php
<link rel="stylesheet" type="text/css" href="<?php echo base_url(); ?>resources/css/styles/style.css" />