I'm using Codeigniter 2. I'm trying to display some images using the background url in CSS.
I have placed the images and css folders in my index.php directory level and I can access the images and CSS folders from my browser as well, so I don't think its an .htaccess problem.
My code for my CSS file is as follows:
.multiplebgs .upload-creative-browse-button:hover {
background:
url(/images/progress_meter_leftcap_round.png) 0 -200px no-repeat,
url(/images/progress_meter_rightcap_round.png) 100% -200px no-repeat,
url(/images/progress_meter_fill.png) 0 -200px repeat-x;
color: #98BD5E;
}
For some reason, its not displaying the images even though the rest of the CSS styling loads fine.