<?xml version="1.0" encoding="UTF-8"?>    <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
      <channel>
        <title>Picture Gallery</title>
        <link>https://interactivetools.com/forum/forum-posts.php?Picture-Gallery-68589</link>
        <description></description>
        <pubDate>Wed, 19 Aug 2026 07:38:43 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-posts.php?rss=1&amp;Picture-Gallery-68589" rel="self" type="application/rss+xml" />

                <item>
          <title>Re: [degreesnorth] Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2218439#post2218439</link>
          <description><![CDATA[It won't make that much difference to the speed of the page if the code is in the header for all pages, as the click event could never been run unless . When I want to only show something on a specific page that has to be in a include header, I do this:<br /><br />In the Gallery file:<br /><br /><code>$isGalleryPage = true;<br />include('include_header.php');</code><br /><br />include_header.php file:<br /><br /><code>&lt;?php if(@$isGalleryPage ): ?&gt;<br /><br />&lt;!-- Code to only appear on gallery page goes here --&gt;<br /><br />&lt;?php endif; ?&gt;</code><br /><br />Could you give me a bit more clarification on the second point?<br /><br />Thanks<br />]]></description>
          <pubDate>Fri, 09 Nov 2012 13:44:16 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2218439#post2218439</guid>
        </item>
                <item>
          <title>Re: [greg] Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2218429#post2218429</link>
          <description><![CDATA[Hi Greg<br /><br />The script works fine on it's own, but as soon as I plug it into a layout with other code, it gets stuff up.<br /><br />Two problems.  Because I am using a include_header.php, I need to add the script in the header which is then more intensive for all pages (unless it doesn't matter??)<br /><br />But when I get to the page itself, it's hiding behind - see http://owow1356.staging-cloud.netregistry.net/gallerynew.php <br /><br />Any other suggestions?<br /><br />Thanks<br /><br />Carole<br />]]></description>
          <pubDate>Thu, 08 Nov 2012 23:00:25 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2218429#post2218429</guid>
        </item>
                <item>
          <title>Re: [degreesnorth] Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2218363#post2218363</link>
          <description><![CDATA[Hi,<br /><br />Both of these should be fairly straightforward.<br /><br />1)I've adapted the code to launch by clicking on an image:<br /><br /><code>&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.1//EN&quot; &quot;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&quot;&gt;<br />&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;<br />&lt;head&gt;<br />    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;<br />    &lt;title&gt;jQuery lightBox plugin&lt;/title&gt;<br /><br />  &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;../style-projects-jquery.css&quot; /&gt;    <br />    <br />    &lt;!-- Arquivos utilizados pelo jQuery lightBox plugin --&gt;<br />    &lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery.js&quot;&gt;&lt;/script&gt;<br />    &lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery.lightbox-0.5.js&quot;&gt;&lt;/script&gt;<br />    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/jquery.lightbox-0.5.css&quot; media=&quot;screen&quot; /&gt;<br />    &lt;!-- / fim dos arquivos utilizados pelo jQuery lightBox plugin --&gt;<br />    <br />    &lt;!-- Ativando o jQuery lightBox plugin --&gt;<br />    &lt;script type=&quot;text/javascript&quot;&gt;<br />    $(function() {<br />       //Create the slideshow.<br />        $('#gallery a').lightBox();<br />        //If the zoomButton ID is clicked...<br />        $('#zoomButton').click(function(){<br />          //create a click event on the first link in the hidden gallery id, which will launch the slideshow.<br />          $('#gallery a:first').click();<br />        });<br />    });<br />    &lt;/script&gt;<br />    &lt;style type=&quot;text/css&quot;&gt;<br />  <br />  #gallery {<br />    background-color: #444;<br />    padding: 10px;<br />    width: 520px;<br />  }<br />  #gallery ul { list-style: none; }<br />  #gallery ul li { display: inline; }<br />  #gallery ul img {<br />    border: 5px solid #3e3e3e;<br />    border-width: 5px 5px 20px;<br />  }<br />  #gallery ul a:hover img {<br />    border: 5px solid #fff;<br />    border-width: 5px 5px 20px;<br />    color: #fff;<br />  }<br />  #gallery ul a:hover { color: #fff; }<br />  &lt;/style&gt;<br />&lt;/head&gt;<br /><br />&lt;body&gt;<br />&lt;!-- general page content --&gt;<br />&lt;h2 id=&quot;example&quot;&gt;&lt;?php echo $gallery['title']; ?&gt;&lt;/h2&gt;<br />&lt;p&gt;&lt;?php echo $gallery['content']; ?&gt;&lt;/p&gt;<br />&lt;!--check for image array --&gt;<br />&lt;?php if($gallery['gallery']): ?&gt;<br />&lt;!-- This section isn't visible to the user, but lightBox function will be able to generate the lightbox using it, and it will still preload the images. --&gt;<br />&lt;div style=&quot;display:none;&quot; id=&quot;gallery&quot;&gt;<br />    &lt;ul&gt;<br />        &lt;!-- foreach image the array create a variable called row --&gt;<br />        &lt;?php foreach($gallery['gallery'] as $key =&gt; $row): ?&gt;<br />        &lt;li&gt;<br />            &lt;a href=&quot;&lt;?php echo $row['urlPath']; ?&gt;&quot; title=&quot;&lt;?php echo $row['info1']; ?&gt;&quot; &gt;<br />                &lt;img src=&quot;&lt;?php echo $row['thumbUrlPath']; ?&gt;&quot; width=&quot;72&quot; height=&quot;72&quot; alt=&quot;&quot; /&gt;<br />            &lt;/a&gt;<br />        &lt;/li&gt;<br />        &lt;?php endforeach?&gt;<br />        &lt;li&gt;<br />    &lt;/ul&gt;<br />&lt;/div&gt;<br />&lt;?php endif;?&gt;<br />&lt;?php if($image = $gallery['gallery'][0]): ?&gt;<br />  &lt;!-- If the link with an id of zoomButton is clicked this will laumch the slideshow. --&gt;<br />  &lt;a  id=&quot;zoomButton&quot; href=&quot;#&quot;&gt;&lt;img src=&quot;&lt;?php echo $image['urlPath']; ?&gt;&quot; alt=&quot;&lt;?php echo $image['info1']; ?&gt;&quot; /&gt;&lt;/a&gt;<br />&lt;?php endif; ?&gt;<br />&lt;/html&gt;</code><br /><br />2) This should be possible, although you'll need to create a lightBox object and click event for each individual light Box:<br /><br /><code>    &lt;script type=&quot;text/javascript&quot;&gt;<br />    $(function() {<br />       //Create the slideshow.<br />        $('#gallery a').lightBox();<br />        //If the zoomButton ID is clicked...<br />        $('#zoomButton').click(function(){<br />          //create a click event on the first link in the hidden gallery id, which will launch the slideshow.<br />          $('#gallery a:first').click();<br />        });<br />        <br />        $('#gallery2 a').lightBox();<br />        //If the zoomButton ID is clicked...<br />        $('#zoomButton2').click(function(){<br />          //create a click event on the first link in the hidden gallery id, which will launch the slideshow.<br />          $('#gallery2 a:first').click();<br />        });<br />        $('#gallery3 a').lightBox();<br />        //If the zoomButton ID is clicked...<br />        $('#zoomButton3').click(function(){<br />          //create a click event on the first link in the hidden gallery id, which will launch the slideshow.<br />          $('#gallery3 a:first').click();<br />        });<br />    });<br />    &lt;/script&gt;</code><br /><br />You would also need to duplicate each slide show button and each gallery div and  change the names of the zoomButton and Gallery ID for each.<br /><br />Thanks!<br />]]></description>
          <pubDate>Thu, 01 Nov 2012 11:54:20 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2218363#post2218363</guid>
        </item>
                <item>
          <title>Re: [greg] Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2218358#post2218358</link>
          <description><![CDATA[Perfect, that works.  Thank you.  Best instructions too!! (except that you need to change the  $dirsToCheck = array  to match your own :)!<br /><br />Two questions:<br /><br />1) would it be possible to launch the gallery so that it only launches from ONE image and has the slide show linked from that one image?  For example, like this one http://www.focus10.com.au/photography_courses.php?1 (click on &quot;take a look at the course photos&quot;)<br /><br />2)  Is it possible to add multiple galleries on a single page?  Is that possible?<br />]]></description>
          <pubDate>Wed, 31 Oct 2012 16:47:13 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2218358#post2218358</guid>
        </item>
                <item>
          <title>Re: [degreesnorth] Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2218355#post2218355</link>
          <description><![CDATA[Hi,<br /><br />This is how I would create an image lightbox, this tutorial is based on CMS Builder 2.17, although it should be compatible with older versions as well. It's based on this plugin: <br /><br /><a target="_blank" href="http://leandrovieira.com/projects/jquery/lightbox/">http://leandrovieira.com/projects/jquery/lightbox/</a><br /><br />In CMS Builder I would create a single record section by going to the Section Editor menu in CMS Builder and clicking the 'Add new editor....' button in the bottom right hand corner. In the add new editor box I would select a single record as the type, In my example I named it gallery.<br /><br />Next I would modify the new gallery section and add an upload field by clicking the 'Add Field' button in the bottom right hand corner of the modify section editor. Give the field a name (in my example I used gallery again), and select upload as the field type. As you might want to use more than 25 images ensure that the <i>Maximum uploads</i> field is unchecked. (See field.png)<br /><br />Next Add content to the gallery section. You can upload as many images as you would like, and can select multiple images to be uploaded at the same time. In this example the title will be displayed in the lightbox (see field2.png). Once images are saved you can reorder them by dragging the images up and down the gallery upload field. <br /><br />This is the code I used to display the gallery content on the page:<br /><br /><code>&lt;?php<br /><br />  <br />  <br />  // load viewer library<br />  $libraryPath = 'cmsAdmin/lib/viewer_functions.php';<br />  $dirsToCheck = array('C:/wamp/www/','','../','../../','../../../');<br />  foreach ($dirsToCheck as $dir) { if (@include_once(&quot;$dir$libraryPath&quot;)) { break; }}<br />  if (!function_exists('getRecords')) { die(&quot;Couldn't load viewer library, check filepath in sourcecode.&quot;); }<br /><br />  // load record from 'gallery'<br />  list($galleryRecords, $galleryMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'gallery',<br />    'where'       =&gt; &quot;`num` = '1'&quot;,<br />    'loadUploads' =&gt; true,<br />    'allowSearch' =&gt; false,<br />    'limit'       =&gt; '1',<br />  ));<br />  $gallery = @$galleryRecords[0]; // get first record<br />  if (!$gallery) { dieWith404(&quot;Record not found!&quot;); } // show error message if no record found<br />  <br />  <br />  ?&gt;<br />  <br /><br />&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.1//EN&quot; &quot;http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd&quot;&gt;<br />&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;<br />&lt;head&gt;<br />    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;<br />    &lt;title&gt;jQuery lightBox plugin&lt;/title&gt;<br /><br />  &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;../style-projects-jquery.css&quot; /&gt;    <br />    <br />    &lt;!-- Arquivos utilizados pelo jQuery lightBox plugin --&gt;<br />    &lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery.js&quot;&gt;&lt;/script&gt;<br />    &lt;script type=&quot;text/javascript&quot; src=&quot;js/jquery.lightbox-0.5.js&quot;&gt;&lt;/script&gt;<br />    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/jquery.lightbox-0.5.css&quot; media=&quot;screen&quot; /&gt;<br />    &lt;!-- / fim dos arquivos utilizados pelo jQuery lightBox plugin --&gt;<br />    <br />    &lt;!-- Ativando o jQuery lightBox plugin --&gt;<br />    &lt;script type=&quot;text/javascript&quot;&gt;<br />    $(function() {<br />        $('#gallery a').lightBox();<br />    });<br />    &lt;/script&gt;<br />    &lt;style type=&quot;text/css&quot;&gt;<br />  <br />  #gallery {<br />    background-color: #444;<br />    padding: 10px;<br />    width: 520px;<br />  }<br />  #gallery ul { list-style: none; }<br />  #gallery ul li { display: inline; }<br />  #gallery ul img {<br />    border: 5px solid #3e3e3e;<br />    border-width: 5px 5px 20px;<br />  }<br />  #gallery ul a:hover img {<br />    border: 5px solid #fff;<br />    border-width: 5px 5px 20px;<br />    color: #fff;<br />  }<br />  #gallery ul a:hover { color: #fff; }<br />  &lt;/style&gt;<br />&lt;/head&gt;<br /><br />&lt;body&gt;<br />&lt;!-- general page content --&gt;<br />&lt;h2 id=&quot;example&quot;&gt;&lt;?php echo $gallery['title']; ?&gt;&lt;/h2&gt;<br />&lt;p&gt;&lt;?php echo $gallery['content']; ?&gt;&lt;/p&gt;<br />&lt;!--check for image array --&gt;<br />&lt;?php if($gallery['gallery']): ?&gt;<br />&lt;div id=&quot;gallery&quot;&gt;<br />    &lt;ul&gt;<br />        &lt;!-- foreach image the array create a variable called row --&gt;<br />        &lt;?php foreach($gallery['gallery'] as $key =&gt; $row): ?&gt;<br />        &lt;li&gt;<br />            &lt;a href=&quot;&lt;?php echo $row['urlPath']; ?&gt;&quot; title=&quot;&lt;?php echo $row['info1']; ?&gt;&quot; &gt;<br />                &lt;img src=&quot;&lt;?php echo $row['thumbUrlPath']; ?&gt;&quot; width=&quot;72&quot; height=&quot;72&quot; alt=&quot;&quot; /&gt;<br />            &lt;/a&gt;<br />        &lt;/li&gt;<br />        &lt;?php endforeach?&gt;<br />        &lt;li&gt;<br />    &lt;/ul&gt;<br />&lt;/div&gt;<br />&lt;?php endif;?&gt;<br />&lt;/body&gt;<br />&lt;/html&gt;</code><br /><br />The foreach loop at the bottom will cycle through all of the uploaded images in the order they are in the upload list. $row['info1'] contains the title, $row['urlPath'] and $row['thumbUrlPath'] contain the URL path to the image uploaded and the thumbnail that is generated by CMS Builder. Field3.png shows what the finished lightbox looked like.<br /><br />Let me know if you would like me to clarify anything!<br /><br />Thanks<br />]]></description>
          <pubDate>Wed, 31 Oct 2012 12:33:22 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2218355#post2218355</guid>
        </item>
                <item>
          <title>Re: [Donna] Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2218350#post2218350</link>
          <description><![CDATA[I've checked the link on this post - re the instructions on how to add a gallery using either lightbox, lytebox, etc - but none of the links remain active. <br /><br />What I am trying to active is a lytebox or lightbox effect whereby the clients can simply upload a pile of images and they display in a gallery similar to this <a target="_blank" href="http://www.focus10.com.au/photography_courses.php?1">http://www.focus10.com.au/photography_courses.php?1</a> (click on the &quot;take a look at the gallery).  However, this way is cumbersome for the client as they need to enter the name of the image for each, whereas it'd be great if they can just use the image upload and it creates it automatically. <br /><br />Any previous or new instructions would be great.  This is the code used to create the above: <br /><br />&lt;td valign=&quot;top&quot;&gt;<br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_1'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;images/course_photos.jpg&quot; width=&quot;184&quot; height=&quot;120&quot;&gt;&lt;/a&gt; <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_2'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt;  <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_3'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt; <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_4'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt; <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_5'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt;  <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_6'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt; <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_7'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt; <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_8'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt;  <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_9'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt; <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_10'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt; <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_11'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt;  <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_12'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt; <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_13'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt; <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_14'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt;  <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_15'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt; <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_16'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt; <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_17'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt;  <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_18'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt; <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_19'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt; <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_20'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt;  <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_21'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt; <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_22'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt; <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_23'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt;  <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_24'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt; <br />&lt;a href=&quot;/cmsAdmin/uploads/&lt;?php echo $photography_coursesRecord['gallery_image_25'] ?&gt;&quot; rel=&quot;lyteshow[]&quot; title=&quot;&lt;?php echo $photography_coursesRecord['gallery_title'] ?&gt;&quot;&gt;&lt;/a&gt; <br />&lt;/td&gt;<br />]]></description>
          <pubDate>Tue, 30 Oct 2012 23:52:42 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2218350#post2218350</guid>
        </item>
                <item>
          <title>Re: [Dave] Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2195417#post2195417</link>
          <description><![CDATA[Hi, Dave.<br /><br />This is a new job I'll be starting this week (the yoga site we discussed before Christmas). I just used another client's gallery as an example, although that one won't have subsections. <br /><br />I'll probably be in touch sometime next week!<br /><br />Thanks,<br />]]></description>
          <pubDate>Mon, 26 Jan 2009 16:23:33 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2195417#post2195417</guid>
        </item>
                <item>
          <title>Re: [NigelGordijk] Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2195412#post2195412</link>
          <description><![CDATA[H Nigel,<br /><br />Right, so it could be a section called &quot;Galleries&quot; and they could click &quot;Add Record&quot; to add a gallery.  And a record would have a &quot;Gallery Name&quot; field and an upload field where they could upload multiple images.<br /><br />Then you'd have a list viewer to list the galleries and a detail viewer to show the images.<br /><br />Feel free to email me direct at dave@interactivetools.com if you want to show me hwo you have it setup now.<br /><br />Hope that helps!<br />]]></description>
          <pubDate>Mon, 26 Jan 2009 16:14:57 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2195412#post2195412</guid>
        </item>
                <item>
          <title>Re: [Dave] Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2195407#post2195407</link>
          <description><![CDATA[Hi, Dave.<br /><br />Do you mean that I would have to set up the galleries in advance, then the client would be able to add photos to them? <br /><br />What I'm actually looking for is a way to let the client create new galleries themselves, using a CMS Builder template created by me.<br />]]></description>
          <pubDate>Mon, 26 Jan 2009 16:01:46 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2195407#post2195407</guid>
        </item>
                <item>
          <title>Re: [NigelGordijk] Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2195400#post2195400</link>
          <description><![CDATA[Hi Nigel,<br /><br />Yes.  If you're not paging through uploads you can have one record for each &quot;Gallery&quot;.  Then your list page will list the galleries and your detail page will show the images.<br /><br />Let me know if that works for you.<br />]]></description>
          <pubDate>Mon, 26 Jan 2009 15:40:32 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2195400#post2195400</guid>
        </item>
                <item>
          <title>Re: [Dave] Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2195379#post2195379</link>
          <description><![CDATA[Thanks, Dave.<br /><br />By the way, now that I have the gallery up and running, it is possible to set this up so that the client can create new galleries in this style? e.g. a gallery for a specific event or on a particular subject. There would be an index page that links to the various individual galleries, each of which would work like this one: http://www.carv.ca/galleryPage.php<br /><br />Cheers,<br />]]></description>
          <pubDate>Fri, 23 Jan 2009 15:32:28 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2195379#post2195379</guid>
        </item>
                <item>
          <title>Re: [chassa2556] Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2195372#post2195372</link>
          <description><![CDATA[Hi Charles, <br /><br />There's no automated way to page through images from a single record without writing a bunch of custom code.  The simplest way to achieve this is to set your upload field to only allow 1 upload and create a new record for each upload.<br /><br />Then you can use the standard record paging features.<br /><br />Hope that helps!<br />]]></description>
          <pubDate>Fri, 23 Jan 2009 15:03:19 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2195372#post2195372</guid>
        </item>
                <item>
          <title>Re: [NigelGordijk] Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2195371#post2195371</link>
          <description><![CDATA[Hi Nigel,<br /><br />&gt;Is there a way to reorder the photos in CMS Builder<br />&gt;once they've already been added to the system? <br /><br />Yes, we added this some time ago with drag sorting for uploads.  If you upgrade that feature should become available.<br /><br />Same thing with the upload window size.  I think we doubled the size.<br /><br />Hope that helps!<br />]]></description>
          <pubDate>Fri, 23 Jan 2009 15:01:59 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2195371#post2195371</guid>
        </item>
                <item>
          <title>Re: [NigelGordijk] Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2195365#post2195365</link>
          <description><![CDATA[Hi Donna<br /><br />I wonder if I could jump in on this one. I want to to gallery where there is a limit to the amount of pictures to the gallery and then it goes to a next page. I've run the next page listing script but it doesn't seem to work. Any ideas I don't know whether it's Lightbox messing it up. I simply want two galleries in two different records with a previous and next link at the bottom of the page linking to them. Any ideas??<br />]]></description>
          <pubDate>Fri, 23 Jan 2009 13:40:24 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2195365#post2195365</guid>
        </item>
                <item>
          <title>Re: [Donna] Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2195364#post2195364</link>
          <description><![CDATA[Hi, Donna.<br /><br />I've set up CMS Builder with Lightbox 2 and it's all working perfectly (thanks to your article!). I'm using an early version of the software - 1.04.<br /><br />Is there a way to reorder the photos in CMS Builder once they've already been added to the system?<br /><br />Also, when I look at all of the photos that are in the system they appear in a small scrolling window in CMS Builder. Is there a way to make the window bigger so that you can see more of the images? This is in CMS Builder, not on my Web page: http://www.carv.ca/galleryPage.php<br /><br />Thanks!<br />]]></description>
          <pubDate>Fri, 23 Jan 2009 12:55:00 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2195364#post2195364</guid>
        </item>
                <item>
          <title>Re: [ChrisTitchenal] Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190161#post2190161</link>
          <description><![CDATA[Hi Chris,<br /><br />Yes, you can setup specific fields for image uploads -- I created one for the &quot;Title&quot; (which is the only thing Lightbox needs extra) and added the code into the CMS Builder generated code, and voila. Probably took about 2 minutes in total to setup. :)<br />]]></description>
          <pubDate>Thu, 14 Feb 2008 15:49:24 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190161#post2190161</guid>
        </item>
                <item>
          <title>Re: [Donna] Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190159#post2190159</link>
          <description><![CDATA[Thanks, when I have time I will try to work something out with in CMS, right now this site has to be up and running by Monday. I am going to use gallery, I have used it in the past and can make it do what I need. Looks like you were using some css and a version of lightbox very nice is the lightbox tags put in automatically with each image upload? I wanted it to have one upload box and 25 slots for uploading then style it so it formated it 2x2. Thanks for the great article.<br /><br />Chris<br />]]></description>
          <pubDate>Thu, 14 Feb 2008 15:37:10 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190159#post2190159</guid>
        </item>
                <item>
          <title>Re: [ChrisTitchenal] Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190147#post2190147</link>
          <description><![CDATA[Hi Chris! <br /><br />To do that, take a look at your image gallery code -- you've probably got a &lt;br&gt; at the end of each &lt;img&gt; tag. Remove that, and it'll keep them on one line (automatically spilling over at the end of each line.) <br /><br />Take a look at the article I wrote for our latest newsletter -- it includes some detail about how I made an image gallery (using a free script to spice it up a little as well): <br /><br />http://www.interactivetools.com/news/issue0073.html#2<br /><br />I hope this helps. :)<br />]]></description>
          <pubDate>Wed, 13 Feb 2008 19:33:33 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190147#post2190147</guid>
        </item>
                <item>
          <title>Re: [virgodesign] Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190126#post2190126</link>
          <description><![CDATA[Hang on when I did what you said to the box, NOT the pages like I tried after I made that post it worked like a champ.<br />I am sure that is what you ment for me to do in the first place, but as you can tell php and following instructions is not a strong point.  <br /><br />  <br /><br />Thanks dave, <br />now if I can just style up a nice gallery instead of them all just going down a row <br /><br />  <br /><br />Chris<br />]]></description>
          <pubDate>Tue, 12 Feb 2008 16:45:03 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190126#post2190126</guid>
        </item>
                <item>
          <title>Re: [Dave] Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190117#post2190117</link>
          <description><![CDATA[Hi Dave,<br /><br />Indeed it would, picture resizing and optimization then is not an issue. <br /><br />The drag and drop feature is nice to... I will have to buy my own copy of CMS Builder and play around with it myself. (Can't use client's sites for testing) It looks like a great interface for all kinds of solutions.<br /><br />Avrom<br />]]></description>
          <pubDate>Tue, 12 Feb 2008 00:20:08 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190117#post2190117</guid>
        </item>
                <item>
          <title>Re: [virgodesign] Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190116#post2190116</link>
          <description><![CDATA[Hi Avrom, post away, that's what we're here for! :)<br /><br />Yes you could.  I'm thinking the simplest way to do that would be to have a section called &quot;Galleries&quot; with 2 fields &quot;title&quot; and &quot;uploads&quot;.  Then your &quot;list viewer&quot; would show all the gallery titles and your &quot;page viewer&quot; would show all the pictures for that gallery.<br /><br />It could also be done other ways if needed.<br /><br />It resizes uploaded images only if necessary and uses a default quality setting of 75 for jpegs, but that can be adjusted if needed.<br /><br />Let me know if you have any more questions on that or if there's anything else I can do to help.<br />]]></description>
          <pubDate>Mon, 11 Feb 2008 20:58:20 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190116#post2190116</guid>
        </item>
                <item>
          <title>Picture Gallery</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190115#post2190115</link>
          <description><![CDATA[Hi Dave,<br /><br />Know your busy, so sorry for the extra post. I have a client that requires CMS as well as a picture gallery. I am wondering if I can just do a picture gallery with CMS Builder ? as long as pics can be reordered and deleted... galleries added etc. Does it also optimize uploaded pics or just reduce the physical size of them ?<br /><br />Thanks Dave<br />Avrom<br />]]></description>
          <pubDate>Mon, 11 Feb 2008 19:25:49 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190115#post2190115</guid>
        </item>
              </channel>
    </rss>
  