gox
gox

Reputation: 51

Can't load css stylesheet in Codeigniter

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();

Upvotes: 1

Views: 926

Answers (1)

Abdulla Nilam
Abdulla Nilam

Reputation: 38584

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.

Upvotes: 1

Related Questions