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">
有帮助吗?

解决方案

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

其他提示

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">
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top