Can't load css stylesheet in Codeigniter

不羁岁月 提交于 2019-12-11 06:29:47

问题


I have main CSS stylesheet for CI views, when but when load another link and switch to another page, Codeigniter have problem to locate css style-sheet?

CSS is classically linked in header, did not used frameworks helpers like base_url();


回答1:


loading CSS will be

href= "<?php echo base_url()?>assets/css/stylesheet.css"

And file structure would be like this

application
assets
    css
        stylesheet.css
system
index.php

Note Make sure Base Url is set correctly.



来源:https://stackoverflow.com/questions/38942840/cant-load-css-stylesheet-in-codeigniter

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!