Thanks for that Velden.
Unfortunately, I have little knowledge of coding
Maybe you could expand this a bit for me so I can get it
I have posted the part of the code that I think needs changing, maybe you could explain exactly what I needed to put in and where.
With regard to the styling, would this be done via the CSS? Maybe you could give me an example please?
Thank you once again, Regards Ian.
Code: Select all
{foreach from=$images item=image}
<div class="img">
{if $image->isdir}
<a href="{$image->file}" title="{$image->titlename}"><img src="{$image->thumb|escape:'url'|replace:'%2F':'/'}" alt="{$image->titlename}" /></a><br />
{$image->titlename}
{else}
<a class="group" href="{$image->file|escape:'url'|replace:'%2F':'/'}" title="{$image->comment}" rel="prettyPhoto[{$galleryid}]"><img src="{$image->thumb|escape:'url'|replace:'%2F':'/'}" alt="{$image->titlename}" /></a>
{/if}
</div>
{/foreach}
<div class="galleryclear"> </div>
</div>