Active
Project:
Fancy Slide
Version:
6.x-2.6
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Issue tags:
Reporter:
Created:
17 Jun 2011 at 06:41 UTC
Updated:
17 Jun 2011 at 06:41 UTC
There seems to be still no full support for PNG images. At start, eg. when the page is loaded, all images are visible and are laying on each other. Over the time all images are disapearing in the second loop and it is working correctly.
The workaround is quite simple, so why not using this in the next version anyway?
The workaround is a simple jquery script:
$(document).ready(function() {
$('.fancy-slide ul li').css('display', 'none');
$('.fancy-slide ul li:first').css('display', 'block');
});