Probably the easiest solution would be to add the logo to header.php. Open up header.php and replace:
<div class='container_wrap' id='header'>
</div>
with:
<div class='container_wrap' id='header'>
<div class="headerlogo">
<?php echo avia_logo(); ?>
</div>
</div>
Then use eg following css code to position the logo:
.headerlogo{
display: none;
position: fixed;
left: 20px;
top: 50px;
}
Adjust the left & top value if you like. Then open up flashlight\js\avia_fullscreen_slider.js and replace:
main_mini.animate(animateThis2, duration, transition1, function(){ main_mini.css({zIndex:0}); });
with
main_mini.animate(animateThis2, duration, transition1, function(){ main_mini.css({zIndex:0}); });
jQuery('.headerlogo').fadeIn();
and:
link.fadeIn();
imagecount.fadeOut();
with:
link.fadeIn();
imagecount.fadeOut();
jQuery('.headerlogo').fadeOut();