i have problem this is javascript function its dont show the image in background.
document.getElementById(showtag).className='loadings';
and this is class property in css i think the problem is in url path.loading.gif is in images folder.
.loadings
{
height:50px;
padding-left:15em;
background-image:url('images/loading.gif');
background-repeat:no-repeat;
background-position:center;
}
The problem is most likely that you have a directory structure like:
so your CSS is pointing to
If so, add a
/to the front of the URL.