0

Stylesheet is loading for codeigniter adminpanel.

But my style css file is not applying for adminpanel. I have added stylesheet as follows and the adminpanel url is http://www.xyz.com/demo/admin.

<link href='<?php echo base_url(); ?>assets/css/uploadify.css' rel='stylesheet' type="text/css">
user1978142
  • 7,946
  • 3
  • 17
  • 20
Ann Mary
  • 138
  • 10

2 Answers2

1
$this->config->set_item('base_url', 'http://www.xyz.com/demo/admin');

<link href='<?php echo base_url(); ?>assets/css/uploadify.css' rel='stylesheet' type="text/css">
Srinu M
  • 76
  • 4
0

You need to load url helper to use url function

$this->load->helper('url');


<link href='<?php echo base_url(); ?>/assets/css/uploadify.css' rel='stylesheet' type="text/css">
Vishwas
  • 6,967
  • 5
  • 42
  • 69