AltynbekKZ / galleriffic

Automatically exported from code.google.com/p/galleriffic
0 stars 1 forks source link

on initial load, 1st image in list does not display. #201

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.  create image list as outlined in documentation
2.
3.

What is the expected output? What do you see instead?
When displayed, the first image is displayed in the slideshow control

What version of the product are you using? On what operating system?
2.0, Win 2003 server r2

Please provide any additional information below.
when the page is displayed, the first image in the list is not being displayed 
in the slideshow control.  if I click thru the thumbnails, the other images are 
displayed.  When viewing the CSS via firebug, I see the following:

<a title="whatever.jpg" href="#323" rel="history" class="advance-link">&nbsp;   

<img alt="whatever.jpg" src="/whatever.jpg" style="width: 0px; height: 0px;"> 
</a> 

Notice that the width and height are set to 0px.

If I do a browser refresh, the image is visible and the resultant CSS is now

<a title="whatever.jpg" href="#323" rel="history" class="advance-link">&nbsp;   

<img alt="whatever.jpg" src="/whatever.jpg" style="width: 400px; height: 
215px;"> 
</a> 

Original issue reported on code.google.com by larry.ka...@comcast.net on 23 Mar 2011 at 6:11