I have this code:
<img src="<?php echo get_template_directory_uri() ?>/img/loader.gif" alt="<?php echo ANSIMUZ_THEME; ?>" />
How can I move loader.gif under main background? (so it will show up before main background and hides when background is loaded) main background is somewhere maybe here:
$('#home-title').backstretch([
myJsVars.front_background1
I dont really know java
You can probably use pure css z-index to set the hierarchy. Make sure the loader image has a lower z-index than #home-title. Like this:
Don't forget add the id attribute id="loader" on your loader image element.