Hi,
I am running cms version 1.10.3 with cataloger 0.11and lightbox 1.0.1 installed.
I have 15 items per catagory page. Currently, each time you click on an item it navigates to a new page with a larger image. I would like it that instead, it opens up a lightbox window instead.
I would like to know where would I insert the rel=lightbox or {lightbox} command (I am not sure which I would use)

Code: Select all
<h1>{$title}</h1>
{section name=numimg loop=$image_url_array}<img src="{$image_url_array[numimg]}" alt="{$title}" title="{$title}" />{/section}
{$notes}
<div class="category_items">
{if $hasnav == 1}
<div class="catnav">{$prev}{$navstr}{$next}</div>
{/if}
{section name=numloop loop=$items}
<div class="category_item"><a href="{$items[numloop].link}"><img src="{$items[numloop].image}" title="{$items[numloop].title}" alt="{$items[numloop].title}"/></a><br /><a href="{$items[numloop].link}">{$items[numloop].title}</a></div>
{/section}
{if $hasnav == 1}
{*
The number that is without a link (a href) have a <span class="nolink" ) have a look in source code-html
*}
<div class="catnav">{$prev}{$navstr}{$next}</div>
{/if}
</div>


Ven Tano