<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Lightbox 2.0 Web Photo Gallery</title>
	<atom:link href="http://www.photoshoplab.com/lightbox-20-web-photo-gallery.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.photoshoplab.com/lightbox-20-web-photo-gallery.html</link>
	<description>Photoshop Tutorials, Tips, Tricks and News</description>
	<lastBuildDate>Mon, 25 Jan 2010 13:33:34 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ian</title>
		<link>http://www.photoshoplab.com/lightbox-20-web-photo-gallery.html/comment-page-1#comment-3676</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Mon, 25 Jan 2010 13:33:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.photoshoplab.com/lightbox-20-web-photo-gallery.html#comment-3676</guid>
		<description>Here is what I did to get this to work with Lighbox 2.04.

At line 216 you will find the if statement
        if ((imageLink.rel == &#039;lightbox&#039;)){

insert the following three lines:
            imageLink.href = imageLink.href.replace(&quot;/pages/&quot;,&quot;/images/&quot;);
            imageLink.href = imageLink.href.replace(&quot;.html&quot;,&quot;.jpg&quot;);
            imageLink.href = imageLink.href.replace(&quot;.htm&quot;,&quot;.jpg&quot;);

just before this line:
            this.imageArray.push([imageLink.href, imageLink.title]);         

A few lines below that insert the following three lines:
            anchor.href = anchor.href.replace(&quot;/pages/&quot;,&quot;/images/&quot;);
            anchor.href = anchor.href.replace(&quot;.html&quot;,&quot;.jpg&quot;);
            anchor.href = anchor.href.replace(&quot;.htm&quot;,&quot;.jpg&quot;);

before this line:
            this.imageArray = 

The whole if else statement at line 216 should now look like this:
        if ((imageLink.rel == &#039;lightbox&#039;)){
            // if image is NOT part of a set, add single image to imageArray
            imageLink.href = imageLink.href.replace(&quot;/pages/&quot;,&quot;/images/&quot;);
            imageLink.href = imageLink.href.replace(&quot;.html&quot;,&quot;.jpg&quot;);
            imageLink.href = imageLink.href.replace(&quot;.htm&quot;,&quot;.jpg&quot;);
            this.imageArray.push([imageLink.href, imageLink.title]);         
        } else {
            // if image is part of a set..
            anchor.href = anchor.href.replace(&quot;/pages/&quot;,&quot;/images/&quot;);
            anchor.href = anchor.href.replace(&quot;.html&quot;,&quot;.jpg&quot;);
            anchor.href = anchor.href.replace(&quot;.htm&quot;,&quot;.jpg&quot;);
            this.imageArray = 
                $$(imageLink.tagName + &#039;[href][rel=&quot;&#039; + imageLink.rel + &#039;&quot;]&#039;).
                collect(function(anchor){ return [anchor.href, anchor.title]; }).
                uniq();
            
            while (this.imageArray[imageNum][0] != imageLink.href) { imageNum++; }
        }</description>
		<content:encoded><![CDATA[<p>Here is what I did to get this to work with Lighbox 2.04.</p>
<p>At line 216 you will find the if statement<br />
        if ((imageLink.rel == &#8216;lightbox&#8217;)){</p>
<p>insert the following three lines:<br />
            imageLink.href = imageLink.href.replace(&#8220;/pages/&#8221;,&#8221;/images/&#8221;);<br />
            imageLink.href = imageLink.href.replace(&#8220;.html&#8221;,&#8221;.jpg&#8221;);<br />
            imageLink.href = imageLink.href.replace(&#8220;.htm&#8221;,&#8221;.jpg&#8221;);</p>
<p>just before this line:<br />
            this.imageArray.push([imageLink.href, imageLink.title]);         </p>
<p>A few lines below that insert the following three lines:<br />
            anchor.href = anchor.href.replace(&#8220;/pages/&#8221;,&#8221;/images/&#8221;);<br />
            anchor.href = anchor.href.replace(&#8220;.html&#8221;,&#8221;.jpg&#8221;);<br />
            anchor.href = anchor.href.replace(&#8220;.htm&#8221;,&#8221;.jpg&#8221;);</p>
<p>before this line:<br />
            this.imageArray = </p>
<p>The whole if else statement at line 216 should now look like this:<br />
        if ((imageLink.rel == &#8216;lightbox&#8217;)){<br />
            // if image is NOT part of a set, add single image to imageArray<br />
            imageLink.href = imageLink.href.replace(&#8220;/pages/&#8221;,&#8221;/images/&#8221;);<br />
            imageLink.href = imageLink.href.replace(&#8220;.html&#8221;,&#8221;.jpg&#8221;);<br />
            imageLink.href = imageLink.href.replace(&#8220;.htm&#8221;,&#8221;.jpg&#8221;);<br />
            this.imageArray.push([imageLink.href, imageLink.title]);<br />
        } else {<br />
            // if image is part of a set..<br />
            anchor.href = anchor.href.replace(&#8220;/pages/&#8221;,&#8221;/images/&#8221;);<br />
            anchor.href = anchor.href.replace(&#8220;.html&#8221;,&#8221;.jpg&#8221;);<br />
            anchor.href = anchor.href.replace(&#8220;.htm&#8221;,&#8221;.jpg&#8221;);<br />
            this.imageArray =<br />
                $$(imageLink.tagName + &#8216;[href][rel="' + imageLink.rel + '"]&#8216;).<br />
                collect(function(anchor){ return [anchor.href, anchor.title]; }).<br />
                uniq();</p>
<p>            while (this.imageArray[imageNum][0] != imageLink.href) { imageNum++; }<br />
        }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zane Cole</title>
		<link>http://www.photoshoplab.com/lightbox-20-web-photo-gallery.html/comment-page-1#comment-2451</link>
		<dc:creator>Zane Cole</dc:creator>
		<pubDate>Sat, 11 Jul 2009 17:18:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.photoshoplab.com/lightbox-20-web-photo-gallery.html#comment-2451</guid>
		<description>Has anyone adapted the lightbox.js of lightbox 2.04 to work with web photo gallery?  Verstion 2.04 has a few upgrades and the code is changed such that it doesn&#039;t appear to be a simple modification to get it to work with web photo gallery.
Any help is appreciated.</description>
		<content:encoded><![CDATA[<p>Has anyone adapted the lightbox.js of lightbox 2.04 to work with web photo gallery?  Verstion 2.04 has a few upgrades and the code is changed such that it doesn&#8217;t appear to be a simple modification to get it to work with web photo gallery.<br />
Any help is appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.photoshoplab.com/lightbox-20-web-photo-gallery.html/comment-page-1#comment-1835</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Tue, 24 Feb 2009 06:19:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.photoshoplab.com/lightbox-20-web-photo-gallery.html#comment-1835</guid>
		<description>WOW - I just realized you have the whole preset folder for download! You rock! I have one BIG question though... I&#039;m using .htaccess on the image folder, so I need to move all lightbox content to another folder called &quot;lightbox&quot; so everything behaves before loading the main image. I thought I fixed all pathnames in the lightbox files, but I suspect something else broke. Can you tell me where I need to look to update the new directory names and in what files? Thanks in advance!</description>
		<content:encoded><![CDATA[<p>WOW &#8211; I just realized you have the whole preset folder for download! You rock! I have one BIG question though&#8230; I&#8217;m using .htaccess on the image folder, so I need to move all lightbox content to another folder called &#8220;lightbox&#8221; so everything behaves before loading the main image. I thought I fixed all pathnames in the lightbox files, but I suspect something else broke. Can you tell me where I need to look to update the new directory names and in what files? Thanks in advance!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.photoshoplab.com/lightbox-20-web-photo-gallery.html/comment-page-1#comment-1834</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Tue, 24 Feb 2009 05:36:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.photoshoplab.com/lightbox-20-web-photo-gallery.html#comment-1834</guid>
		<description>Has anyone tried this with the new Lightbox 2.04? The .js file is different so I don&#039;t know how to make these mods and I REALLY want to figure this out! This is the perfect solution for my needs.</description>
		<content:encoded><![CDATA[<p>Has anyone tried this with the new Lightbox 2.04? The .js file is different so I don&#8217;t know how to make these mods and I REALLY want to figure this out! This is the perfect solution for my needs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: portfolio.oarso.net &#187; Blog Archive &#187; jQuery &#124; ThickBox 3.1 &#124; Lightbox 2.0</title>
		<link>http://www.photoshoplab.com/lightbox-20-web-photo-gallery.html/comment-page-1#comment-374</link>
		<dc:creator>portfolio.oarso.net &#187; Blog Archive &#187; jQuery &#124; ThickBox 3.1 &#124; Lightbox 2.0</dc:creator>
		<pubDate>Wed, 23 Jul 2008 22:02:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.photoshoplab.com/lightbox-20-web-photo-gallery.html#comment-374</guid>
		<description>[...] Lightbox Links [...]</description>
		<content:encoded><![CDATA[<p>[...] Lightbox Links [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luca</title>
		<link>http://www.photoshoplab.com/lightbox-20-web-photo-gallery.html/comment-page-1#comment-206</link>
		<dc:creator>Luca</dc:creator>
		<pubDate>Tue, 10 Jun 2008 16:18:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.photoshoplab.com/lightbox-20-web-photo-gallery.html#comment-206</guid>
		<description>And what about milkbox? Take a look! ;)

http://reghellin.com/milkbox</description>
		<content:encoded><![CDATA[<p>And what about milkbox? Take a look! <img src='http://www.photoshoplab.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><a href="http://reghellin.com/milkbox" rel="nofollow">http://reghellin.com/milkbox</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
