Anu
Anu

Reputation: 138

stylesheet is loading but style is not applying for admin panel of codeigniter?

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">

Upvotes: 0

Views: 192

Answers (2)

Srinu M
Srinu M

Reputation: 76

$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">

Upvotes: 1

Vishwas
Vishwas

Reputation: 7067

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">

Upvotes: 0

Related Questions