[solved] gallery cycle "bug"

Have a question or a suggestion about a 3rd party addon module or plugin?
Let us know here.
Post Reply
User avatar
jd447
Forum Members
Forum Members
Posts: 134
Joined: Wed Jun 20, 2007 7:06 am
Location: geneva

[solved] gallery cycle "bug"

Post by jd447 »

It seems like cycle 1.0.2 is showing a blank image. I guess it's because it's rotating the DIV's.
Because of that it's also showing the DIV clear:both.
I removed it and it works fine. It doesn't seem useful anyway, as nothing is floating. am i right?

Code: Select all

{* note that the thumbs are shown in stead of the original images, just to make sure all images are of the same size due to the crop image-resize option *}
<div id="slides">
{foreach from=$images item=image}
	{if !$image->isdir}
		<img src="{$image->thumb}" alt="{$image->titlename}" />
	{/if}
{/foreach}
<div style="clear:both;"></div></div>
i removed the last div

Code: Select all

{* note that the thumbs are shown in stead of the original images, just to make sure all images are of the same size due to the crop image-resize option *}
<div id="slides">
{foreach from=$images item=image}
	{if !$image->isdir}
		<img src="{$image->thumb}" alt="{$image->titlename}" />
	{/if}
{/foreach}
</div>
Post Reply

Return to “Modules/Add-Ons”