About this topic

  • Posted by cloudform 1 year ago. There are 3 posts. The latest reply is from cloudform.
  • This topic is resolved
  1. In the Layouts Editor, you can edit galery_viewer, gallery_view_layout etc and more importantly see the code used.

    I learn from example, so I'd like to see the code used for "Standard Layout" but this option is not selectable. Does anyone have a copy of the Standard Layout code I could look at it in order to build my own layout with tiny changes from?

  2. Here's a quick try at it:

    For the HTML Layout section:

    <li id='psimg_[image_id]' class='psgal_[gallery_id]' style='width: 33%; height: 200px;'>
    <div class='bwbps_image_div' style='width: 129px;'>
    [thumbnail]<br/>
    <a href='[image_url]'>[caption]</a>
    </div>
    </li>

    For the Wrapper section:

    <div class='bwbps_gallery_div'>
    <table>
    <tbody>
    <tr>
    <td>
    <ul class='bwbps_gallery'>
    [gallery]
    </ul>
    </td>
    </tr>
    </table>
    </div>

    That pretty much tries to emulate the gallery shown in the Demo on this site. You can play around with the widths and heights that are hard coded in here to suit your needs. The 33% gets you 3 images on a row.

    Hope that helps!
    Byron

  3. Thanks Byron! I will give it a try!

RSS feed for this topic