What path do I use to call a background image in codeigniter What path do I use to call a background image in codeigniter codeigniter codeigniter

What path do I use to call a background image in codeigniter


background-image: url() in CSS works relatively.

Try this:

body {    background-image: url('../img/bg-admin.jpg');}

This is assuming that your css file is in assets/css and not a sub folder of it.

Hope this helps!


codeigniter will take the base_url. your url is http://localhost/rscms/external/bootstrap/css/style.cssyou will to go back to bootstrap first come out from style.css then css then bootstrap

background-image: url('../../../img/bg-admin.jpg');