Try this:
Help the helpless
- Code: Select all
<cms:folders masterpage='portfoliogallery.php' include_custom_fields='1'>
<cms:pages folder=k_folder_name limit='1' orderby='publish_date' order='desc'>
<cms:set first_image_in_folder = gg_image scope='global' />
<cms:set first_image_in_folder_thumb = gg_thumb scope='global' />
<cms:set first_image_in_folder_title = k_page_title scope='global' />
</cms:pages>
<div class="iso-box <cms:show tags /> col-lg-4 col-md-4 col-sm-4 col-xs-6" style="border-right: 2px solid #000000; border-bottom: 2px solid #000000; border-top: 2px solid #aa7f4d; border-left: 2px solid #aa7f4d;">
<div style="overflow: hidden; height: 0; padding-bottom: 70%;">
<a href="<cms:show first_image_in_folder />"
data-lightbox-gallery="<cms:show first_image_in_folder />"
title="<cms:show first_image_in_folder_title />" >
<img src="<cms:show k_folder_image />"
style="width: 120%; height: auto; display: block; margin: auto auto;"
class="img-responsive"
alt="<cms:show k_folder_title />" >
</a>
</div>
</div>
</cms:folders>
Help the helpless
