We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 21244
    • 5 Posts
    As is well known the gallery output is:

    <div class="thumbscontainer">
      <ul class="thumbs">
        <li><a href="#"></a></li>
         ...
        <li><a href="#"></a></li>
    </ul>
    </div>


    and number of <li> in </ul> regulated by the parameter&pics_per_row=`...`

    I want to combine Cycle Plugin (for pagination without reloading the page and the beautiful change of <ul>) so I need next:

    <div class="thumbscontainer">
      <ul class="thumbs" style="z-index:1">
        <li><a href="#"></a></li>
         ...
        <li><a href="#"></a></li>
    </ul>
    <ul class="thumbs" style="z-index:2">
        <li><a href="#"></a></li>
         ...
        <li><a href="#"></a></li>    
    </ul>
    </div>


    And if first "style="z-index:1" can be written in galleryoutertpl.html, then the other z-indexes have to displaed in a loop, but it comes from clearertpl.html

    Help, plz.