--
Ok, if that’s an issue, I’d like to hear more about it.file ui.atk4_loader.jsif(this.options.cogs){var l=$(this.options.cogs);l.prependTo(self.element);l.hide();self.loader=l;}and then in line 254 after loading is done, it hides itself:},function(){ // second callback, which is always called, when loading is completedself.loader.hide();self.loading=false;});If that is not working, you can try moving the loader.hide() method to line 177, after $.atk4.get(), which will hide cogs sooner, before the content is ready to be displayed still.
--
This last problem can be dealt in two ways:
1) Add .loading {z-index:9999} in atk4-main.css
2) Or append <div class="loading"> and not prepend. I mean - put it as last-child and not first-child or reloaded container + set position top:0, left:0;
--