[eluser]mi6crazyheart[/eluser]
Hello peoples,
Just recently i've download CI 2.0 & trying to use it now. Every things are fine except one thing... that, i can able to link external css file in VIEW files.
In CI 1.7.2 i was using this for link my external CSS files.
Code:
<link rel="stylesheet" href="<?php echo base_url(); ?>system/application/views/css/reset.css" />
But, as in CI 2.0 there is a small change in application folder. So, i tried this following line to link my external file. But, it's not working.
Code:
<link rel="stylesheet" href="<?php echo base_url(); ?>application/views/css/reset.css" />
My Controller file is this...
Code:
<?php
class Welcome extends Controller {
function Welcome()
{
parent::Controller();
$this->load->library('session');
$this->load->helper('url');
}
function index()
{
//$this->load->view('welcome_message');
$this->load->view('welcomePage2');
}
}
/* End of file welcome.php */
/* Location: ./application/controllers/welcome.php */
So Guys, is any body who r now using CI 2.0 can help me little bit to figure out the problem...
Thx in Advance... :coolsmile: