0
Hello, I have the following code as part of my index.php
<style>
#backgroundImage{
background-image: url('<?=base_url();?>bg.jpg');
}
</style>
<body id='backgroundImage'>
</body>
But the image is not being loaded. I have a default image called.jpg background that loads, but if I change the name of the image it does not load. Both images are on the right path.
There is a bg.jpg image, but it is not rendered
– spiderman123