Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
rel="lightbox"
to the link already present in 'picture.php' in your theme file. Then you need to add the lightbox javascript lines to the 'head.php' and then have a call to initLightbox() as an onload to the body or as a standalone script tag in 'picture.php' after the large image container in 'picture.php'
$imgtag = '<img class="photos-large" src="'.plogger_get_picture_thumb(THUMB_LARGE).'" title="'.$capt.'" alt="'.$capt.'" />';
rel="lightbox"
tag like <a rel="lightbox" target="_blank" title="******" href="********.jpg">
<img class="*****" src="*****thumbs/*****.jpg" width="120" height="90" alt="*********"></a>
print '
<div id="picture-holder">
<a accesskey="v" href="'.plogger_get_source_picture_url().'">'.$imgtag.'</a>
</div>';
print '
<div id="picture-holder">
<a accesskey="v" href="'.plogger_get_source_picture_url().'" rel="lightbox">'.$imgtag.'</a>
</div>';
1 to 7 of 7