You can load several views at once, or views inside other views.
So in this case I recomend you to create one header view where you load all css and js files
example:
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8">
<link rel="stylesheet" href="<?php echo base_url();?>css/moorainbow.css" type="text/css" media="screen"/>
</head>
<body>
And call it like:
$this->load->view('header');
$this->load->view('view1');
$this->load->view('view2');
This way you can control the files (css+js+etc) you load in just one file.
Regrads,
Pedro
@pcamacho
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…