I solved replacing this code:
Code: Select all
setting.$gallerylayers=$('<div class="gallerylayer"></div><div class="gallerylayer"></div>') //two stacked DIVs to display the actual slide
.css({position:'absolute', left:0, top:'0, width:'100%', height:'100%', background:'black'})
Code: Select all
setting.$gallerylayers=$('<div class="gallerylayer"></div><div class="gallerylayer"></div>') //two stacked DIVs to display the actual slide
.css({position:'absolute', left:0, top:'50%', width:'100%', height:'100%', background:'black'})
Thanks.