<?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">
	<channel>
      <title>All Discussions - Vanilla 2</title>
      <link>http://forums.no-margin-for-errors.com/discussions/feed.rss</link>
      <pubDate>Wed, 16 May 12 17:32:23 -0400</pubDate>
         <description>All Discussions - Vanilla 2</description>
   <language>en-CA</language>
   <atom:link href="/discussions/feed.rss" rel="self" type="application/rss+xml" />
   <item>
      <title>Mixed Gallery</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5474/mixed-gallery</link>
      <pubDate>Wed, 16 May 2012 12:41:14 -0400</pubDate>
      <dc:creator>nono</dc:creator>
      <guid isPermaLink="false">5474@/discussions</guid>
      <description><![CDATA[Hi, <br /><br />What is the html code for a mixed gallery (photos + flash movies), I try it but it doesn't work? <br /><br />Thank you for your answer. <br /><br />Bruno]]></description>
   </item>
   <item>
      <title>new prettyPhoto theme in an iframe</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5477/new-prettyphoto-theme-in-an-iframe</link>
      <pubDate>Wed, 16 May 2012 15:03:29 -0400</pubDate>
      <dc:creator>ktpmm5</dc:creator>
      <guid isPermaLink="false">5477@/discussions</guid>
      <description><![CDATA[I want to load the light-rounded theme for my prettyPhoto popups (it loads a simple text file).  I get the text in a tiny iframe with scrollbars (another issue), but it is not the light-rounded iframe I had hoped for.  Can someone help me figure out what I am doing wrong?<br /><br />Here is how I call my iframe:<br /><div class="PreContainer"><pre><br />&lt;a href=\&quot;images/book1.txt?iframe=true&amp;width=600px&amp;height=600px\&quot; rel=\&quot;prettyPhoto&#91;light_rounded&#93;\&quot; class=\&quot;read_more\&quot; title=\&quot;\&quot;&gt;read more →&lt;/a&gt;<br /></pre></div><br /><br />Here is the script.js call:<br /><div class="PreContainer"><pre><br />//pretty photo<br />jQuery(document).ready(function(){<br />        jQuery(\&quot;a&#91;rel^='prettyPhoto'&#93;\&quot;).prettyPhoto({animationSpeed&#58;'slow',theme&#58;'light_rounded',slideshow&#58;false,overlay_gallery&#58; false,social_tools&#58;false,deeplinking&#58;false});<br />}); <br /></pre></div>]]></description>
   </item>
   <item>
      <title>Bug fix for titles that are &quot;too long&quot; and cause PrettyPhoto to freeze</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5157/bug-fix-for-titles-that-are-too-long-and-cause-prettyphoto-to-freeze</link>
      <pubDate>Wed, 07 Mar 2012 18:04:13 -0500</pubDate>
      <dc:creator>vigrond</dc:creator>
      <guid isPermaLink="false">5157@/discussions</guid>
      <description><![CDATA[Came across a bug where if your title text in your link is too long, PrettyPhoto will freeze.<br /><br />This is caused by a neverending recursion loop on line 601 of v3.1.4 in the _fitToViewport function.  (Because the height of the pp_description is causing the auto resize feature to keep autoresizing, but can never get small enough)<br /><br />To fix, <br /><br />move <br />line 598:                   _getDimensions(imageWidth,imageHeight);   <br /><br />to AFTER <br /><br />line 600: <br />                                if((pp_containerWidth &gt; windowWidth) || (pp_containerHeight &gt; windowHeight)){<br />					_fitToViewport(pp_containerWidth,pp_containerHeight)<br />				};<br /><br />so it looks like this:<br /><br />				if((pp_containerWidth &gt; windowWidth) || (pp_containerHeight &gt; windowHeight)){<br />					_fitToViewport(pp_containerWidth,pp_containerHeight)<br />				};<br />				<br />				_getDimensions(imageWidth,imageHeight);]]></description>
   </item>
   <item>
      <title>Resize bug in prettyphoto 3.1.4</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5476/resize-bug-in-prettyphoto-3.1.4</link>
      <pubDate>Wed, 16 May 2012 13:46:10 -0400</pubDate>
      <dc:creator>babyewok</dc:creator>
      <guid isPermaLink="false">5476@/discussions</guid>
      <description><![CDATA[Just downloaded version 3.1.4 in the hope that it would fix this issue - but unfortunately it didn't.  Whenever prettyphoto needs to resize the image on a smaller screen, it crashes.  This happens in Firefox, Chrome, Opera and IE (not tested on Safari yet), although ONLY when the social tools are enabled.<br /><br />I would consider this a pretty major bug if you want to use the social tools..... any solutions?  This is the first time I've enabled the social tools, so never notice dteh issue in previous versions, but this issue has also been reported in version 3.1.2 here:<br /><br /><a href="http://forums.no-margin-for-errors.com/discussion/1586/prettyphoto-3.1.2-firefox-chrome-ie-bug/p1?post#Form_Body" target="_blank" rel="nofollow">http://forums.no-margin-for-errors.com/discussion/1586/prettyphoto-3.1.2-firefox-chrome-ie-bug/p1?post#Form_Body</a>]]></description>
   </item>
   <item>
      <title>Browser dies on small browser window</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5297/browser-dies-on-small-browser-window</link>
      <pubDate>Thu, 05 Apr 2012 01:26:38 -0400</pubDate>
      <dc:creator>knutola</dc:creator>
      <guid isPermaLink="false">5297@/discussions</guid>
      <description><![CDATA[There is a bug (death of browser window/endless loop) when you have a caption text and the browser window is too small to display both picture and capture. This usually happens when you have a thin vertical image (like rom a smartphone). If you resize with a low height on your browser (Chrome, Firefox, ..) and open this <a href="http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/#prettyPhoto[pp_gal]/0/" target="_blank" rel="nofollow">http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/#prettyPhoto[pp_gal]/0/</a> you will get the same error.<br /><br />I tried this on both ubuntu and windows computer. It only happens when you have a caption and the browser windows happens to be small (as described above)<br />]]></description>
   </item>
   <item>
      <title>Bug in prettyPhoto (if description is too long prettyPhoto keeps reloading and crash browser)</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5323/bug-in-prettyphoto-if-description-is-too-long-prettyphoto-keeps-reloading-and-crash-browser</link>
      <pubDate>Sun, 08 Apr 2012 23:15:11 -0400</pubDate>
      <dc:creator>jdsampayo</dc:creator>
      <guid isPermaLink="false">5323@/discussions</guid>
      <description><![CDATA[If you add a very long description and preferably to test a "vertical" picture, the plugins crashes the browser trying to reload again and again, I suspect that this happens when the text can't fit in current bounding box.<br /><br />Corrected if I crop the description.]]></description>
   </item>
   <item>
      <title>Errors when loading images during IE 8 compatibility testing</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5442/errors-when-loading-images-during-ie-8-compatibility-testing</link>
      <pubDate>Fri, 04 May 2012 17:31:56 -0400</pubDate>
      <dc:creator>vancarney</dc:creator>
      <guid isPermaLink="false">5442@/discussions</guid>
      <description><![CDATA[We get serious javascript errors from jQuery (1.7.2, 1.7.1 and 1.6.1) when the user "clicks" on the large photo in the gallery window. The error is very ambiguous (line 18 on jQuery 1.6.1 and line 14 on jQuery 1.7.x) and IE 8 gives no call stack to track the issue down with. But it's definitely in relation to PrettyPhoto and happening after the image has been loaded and is being sized.<br /><br />We also saw some resize issues across ALL browsers yesterday, but was able to get around that by setting the autoresize option to false. This issue might be related.<br /><br />As it is, it appears Pretty Photo 3.1.4 is broken and we are rolling back to earlier version against jQuery 1.6.1 in hopes of getting something that works without errors and without having to resort to rewriting prettyPhoto with try/catch around all jQuery calls.]]></description>
   </item>
   <item>
      <title>CSS3 rounded corners instead of images</title>
      <link>http://forums.no-margin-for-errors.com/discussion/2344/css3-rounded-corners-instead-of-images</link>
      <pubDate>Fri, 18 Nov 2011 13:15:28 -0500</pubDate>
      <dc:creator>copaesthetic</dc:creator>
      <guid isPermaLink="false">2344@/discussions</guid>
      <description><![CDATA[How do I go about using CSS3 rounded corners instead of the supplied graphic themes?  Really, all I'd want is to not use any external files while still getting the default styling via CSS.  Thanks!]]></description>
   </item>
   <item>
      <title>prettyphoto 3.1.2: firefox, chrome, IE bug</title>
      <link>http://forums.no-margin-for-errors.com/discussion/1586/prettyphoto-3.1.2-firefox-chrome-ie-bug</link>
      <pubDate>Sun, 08 May 2011 05:10:12 -0400</pubDate>
      <dc:creator>max</dc:creator>
      <guid isPermaLink="false">1586@/discussions</guid>
      <description><![CDATA[If I open the browser window with a small size, a js script stops the browser.<br /><br />this is what happens if I open the first demo of the page<br /><a href="http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/" target="_blank" rel="nofollow">http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/</a><br />using scaled firefox<br /><br /><a href="http://i56.tinypic.com/rtnvhu.png" target="_blank" rel="nofollow">http://i56.tinypic.com/rtnvhu.png</a><br /><br />not all downsizing crash the browser, but only a few attempts to find<br /><br />thanks]]></description>
   </item>
   <item>
      <title>Add space between thumbnails</title>
      <link>http://forums.no-margin-for-errors.com/discussion/3599/add-space-between-thumbnails</link>
      <pubDate>Sat, 04 Feb 2012 19:23:25 -0500</pubDate>
      <dc:creator>Bokehman</dc:creator>
      <guid isPermaLink="false">3599@/discussions</guid>
      <description><![CDATA[How can I increase the margins on the thumbnails? I've been altering the prettyPhoto.css file but no matter what value I put in nothing changes when I preview.<br /><br />Thanks in advance.]]></description>
   </item>
   <item>
      <title>single image pretty photo - not working</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5475/single-image-pretty-photo-not-working</link>
      <pubDate>Wed, 16 May 2012 13:17:38 -0400</pubDate>
      <dc:creator>notrin</dc:creator>
      <guid isPermaLink="false">5475@/discussions</guid>
      <description><![CDATA[closed]]></description>
   </item>
   <item>
      <title>PrettyPhoto do not work  with long caption!</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5473/prettyphoto-do-not-work-with-long-caption</link>
      <pubDate>Wed, 16 May 2012 06:02:10 -0400</pubDate>
      <dc:creator>taiju</dc:creator>
      <guid isPermaLink="false">5473@/discussions</guid>
      <description><![CDATA[I've set up my page exactly as instructed.<br />Normally pretty.photo is working.<br /><br />However if the image has long text, some of browser would be crush.<br />(please see below)<br /> <br /><br />long text (waring! your browser will be crush)<br /><a href="http://web2.nazca.co.jp/hoge/long.html" target="_blank" rel="nofollow">http://web2.nazca.co.jp/hoge/long.html</a><br /><br />no long text (working)<br /><a href="http://web2.nazca.co.jp/hoge/short.html" target="_blank" rel="nofollow">http://web2.nazca.co.jp/hoge/short.html</a><br /><br />please give us some advice.<br />Regards,<br />Taiju<br />]]></description>
   </item>
   <item>
      <title>prettyPhoto Swf Loader Instead of Gif</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5470/prettyphoto-swf-loader-instead-of-gif</link>
      <pubDate>Tue, 15 May 2012 06:57:34 -0400</pubDate>
      <dc:creator>boodaddy</dc:creator>
      <guid isPermaLink="false">5470@/discussions</guid>
      <description><![CDATA[Hello I am wanting to use a small swf loader instead of the gif. Can someone please tell me how I can do this? I changed the .gif to loader.swf and it is not showing up. I appreciate any help you can offer.<br /><br />Thanks. I appreciate your time]]></description>
   </item>
   <item>
      <title>Vimeo Pro embed?</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5472/vimeo-pro-embed</link>
      <pubDate>Tue, 15 May 2012 21:20:23 -0400</pubDate>
      <dc:creator>thomen</dc:creator>
      <guid isPermaLink="false">5472@/discussions</guid>
      <description><![CDATA[Hi guys try as I might I can't seem to get a vimeo pro link to appear in prettyPhoto. It's a little different from the standard url in that it lets you pass items to the api so that you can skin the player..<br /><br />the result is an iframe..<br /><br />so basically prettyphoto would need to take the url.. throw it in an iframe and then ti should just work for both flash and html 5..<br /><br />just wondering if anyone had done anything for this as i noticed in the change log there is vimeo iframe support..<br /><br />Thanks so much]]></description>
   </item>
   <item>
      <title>Make PrettyPhoto image area bigger</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5471/make-prettyphoto-image-area-bigger</link>
      <pubDate>Tue, 15 May 2012 13:46:00 -0400</pubDate>
      <dc:creator>pierrestjacques</dc:creator>
      <guid isPermaLink="false">5471@/discussions</guid>
      <description><![CDATA[I'd like to make the initial 'stage' with the picture and the various navigation elements bigger.<br />Here's a pic: <a href="http://bee-productions.com/antiqueria/test1.png" target="_blank" rel="nofollow">http://bee-productions.com/antiqueria/test1.png</a><br />The white around the image is good, even the thickish black line around that. It's the amount of the greyed-out space around all this that I'd like to minimize [especially top/bottom wise]<br /><br />Any help would be appreciated.<br />thank you]]></description>
   </item>
   <item>
      <title>Showing duplicate images</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5469/showing-duplicate-images</link>
      <pubDate>Tue, 15 May 2012 05:59:59 -0400</pubDate>
      <dc:creator>MrStompy</dc:creator>
      <guid isPermaLink="false">5469@/discussions</guid>
      <description><![CDATA[Hi there<br /><br />I have PP set up and working nicely.<br />THe only problem i have is that is that when i use many images in the one gallery it is showing the first image Twice.<br /><br />It does this as i have added that image to the list twice. <br />When there are multiple images available for that page it shows the first image as a large main image and then all of the available images as thumbnails below the main images (it also includes the main image again as a thumbnail).<br /><br />in my search for a great gallery viewer i tested a couple others and some of them automatically remove the duplicate images from the list but so far i have not been able to get PP to do the same<br /><br />Is there a setting I can alter to get PP to filter out duplicate images?]]></description>
   </item>
   <item>
      <title>Address bar issue in Firefox</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5468/address-bar-issue-in-firefox</link>
      <pubDate>Mon, 14 May 2012 12:43:59 -0400</pubDate>
      <dc:creator>kingvandal</dc:creator>
      <guid isPermaLink="false">5468@/discussions</guid>
      <description><![CDATA[First off this is on a kiosk running ff 4.0.  Before you ask no I cannot upgrade it.  <br /><br />This issue is when the user clicks the video the web address changes to: <br /><a href="http://WebServer/tester/WebPage.html#!prettyPhoto[movies]/0/" target="_blank" rel="nofollow">http://WebServer/tester/WebPage.html#!prettyPhoto[movies]/0/</a><br /><br />When you close the video by clicking somewhere else on the page the link changes to:<br /><a href="http://WebServer/tester/WebPage.html#!prettyPhoto" target="_blank" rel="nofollow">http://WebServer/tester/WebPage.html#!prettyPhoto</a><br /><br />When this happens the back buttons no longer work for the page they are currently on.  You have to hit home in order to leave the page.  If you are browsing from a computer with matching ff 4.0 you can click back twice to get out.  This does not happen on the kiosk.  <br /><br />Is it possible to have a script that will, on close of video, change web address back to:  <br /><a href="http://WebServer/tester/WebPage.html" target="_blank" rel="nofollow">http://WebServer/tester/WebPage.html</a> instead of the <a href="http://WebServer/tester/WebPage.html#!prettyPhoto" target="_blank" rel="nofollow">http://WebServer/tester/WebPage.html#!prettyPhoto</a><br /><br />Thanks]]></description>
   </item>
   <item>
      <title>Facebook Like Button Issue</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5467/facebook-like-button-issue</link>
      <pubDate>Mon, 14 May 2012 06:09:16 -0400</pubDate>
      <dc:creator>cyandrea</dc:creator>
      <guid isPermaLink="false">5467@/discussions</guid>
      <description><![CDATA[I'm having a weird problem on this page www.vivopositivo.it/media/foto/guarda-chi-sorride-over-18-e-famiglie/ with the like button. I'm using PrettyPhoto to include the pictures from Flickr and open them in a lightbox. Each picture has it's own like button which shows in the lightbox and uses a specific URL such as:<br /><br /><a href="http://www.vivopositivo.it/media/foto/guarda-chi-sorride-over-18-e-famiglie/#prettyPhoto[pp_gal]/1/" target="_blank" rel="nofollow">http://www.vivopositivo.it/media/foto/guarda-chi-sorride-over-18-e-famiglie/#prettyPhoto[pp_gal]/1/</a><br /><br />where the number in #prettyPhoto[pp_gal]/1/ is the key for the specific image.<br /><br />This works for most of the images, but for some of them it doesn't! They seem to get the like counter of the page instead, therefore, I get about 10 images which show the same 128 like counter which is obviously wrong (ie image n.2). This seems completely random..<br /><br />Do you have any idea on how to fix this?<br /><br />Cheers, Andrea]]></description>
   </item>
   <item>
      <title>test</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5466/test</link>
      <pubDate>Mon, 14 May 2012 04:55:10 -0400</pubDate>
      <dc:creator>taiju</dc:creator>
      <guid isPermaLink="false">5466@/discussions</guid>
      <description><![CDATA[test]]></description>
   </item>
   <item>
      <title>Problem Installing prettyPhoto</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5465/problem-installing-prettyphoto</link>
      <pubDate>Sat, 12 May 2012 18:09:46 -0400</pubDate>
      <dc:creator>katmac</dc:creator>
      <guid isPermaLink="false">5465@/discussions</guid>
      <description><![CDATA[Hi<br />I am using wp 3.3.1. and have downloaded the pettyPhoto compressed zip file "prettyPhoto_compressed_3.1.4".<br />In the admin panel I have selected upload plugin and selected the above zip file then press install.<br />I receive an error message saying <br /><br />Unpacking the package…<br />Installing the plugin… <br />The package could not be installed. No valid plugins were found. <br />Plugin install failed.<br /><br />What could be the problem?<br /><br />Thanks.]]></description>
   </item>
   <item>
      <title>Javascript error</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5464/javascript-error</link>
      <pubDate>Fri, 11 May 2012 16:21:25 -0400</pubDate>
      <dc:creator>dmorton</dc:creator>
      <guid isPermaLink="false">5464@/discussions</guid>
      <description><![CDATA[I've set up my page exactly as instructed (however, I had to modify the jquery reference to point to an actual file - your example says jquery.js, I changed it to jquery-1.6.1.min.js).  I also included the startup code at the bottom of my page:<br /><br />    $(document).ready(function () {<br />        $("a[rel^='prettyPhoto']").prettyPhoto();<br />    });<br /><br /><br />When I run it, javascript blows on the $ sign with this message.<br /><br />Error: The value of the property '$' is null or undefined, not a Function object<br /><br />What else do I need to do to make this work?]]></description>
   </item>
   <item>
      <title>Bad value prettyPhoto for attribute rel on element a: Keyword prettyphoto is not registe</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5463/bad-value-prettyphoto-for-attribute-rel-on-element-a-keyword-prettyphoto-is-not-registe</link>
      <pubDate>Fri, 11 May 2012 01:20:45 -0400</pubDate>
      <dc:creator>coder5a</dc:creator>
      <guid isPermaLink="false">5463@/discussions</guid>
      <description><![CDATA[I used W3 Validator to check my code from Dreamweaver and the following message kept popping up?<br /><br />"Bad value prettyPhoto for attribute rel on element a: Keyword prettyphoto is not registered?"<br /><br />What does this mean exactly and how can I correct the coding to be valid?]]></description>
   </item>
   <item>
      <title>Moving &quot;X&quot; Close to Top</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5462/moving-x-close-to-top</link>
      <pubDate>Thu, 10 May 2012 21:56:15 -0400</pubDate>
      <dc:creator>scottscomp</dc:creator>
      <guid isPermaLink="false">5462@/discussions</guid>
      <description><![CDATA[After 5.5 hours trying to figure this out, I give up.  I'm a pretty smart guy - I know HTML, CSS, ColdFusion, MySQL, and a little javascript but I could not for the life of me figure out how to:<br /><br />Move the "X" Close button to the top of the frame.<br /><br />I scoured the forum and it looks like no one else figured it out either.<br /><br />Our site:<br /><a href="http://forexverified.com/reports/wallstreetforex/wallstreet006.html" target="_blank" rel="nofollow">http://forexverified.com/reports/wallstreetforex/wallstreet006.html</a><br />(click "Symbols" tab, then select a symbol, such as NZDUSD.  A statement will pop up in prettyPhoto)<br /><br />Here's what it looks like 'before':<br /><a href="http://forexverified.com/ppsupport/before.gif" target="_blank" rel="nofollow">http://forexverified.com/ppsupport/before.gif</a><br /><br />I have tried moving the 'pp_details' DIV (which houses the 'pp_close' link) into every other DIV above it.  I noticed the "Expand" button is in the location I want to be, so I tried moving the 'pp_details' DIV underneath the 'pp_fade' DIV, where the expand button is.  This is what I get:<br /><br /><a href="http://forexverified.com/ppsupport/after.gif" target="_blank" rel="nofollow">http://forexverified.com/ppsupport/after.gif</a><br /><br />It's a step in the right direction but something is covering the rest of my content.<br /><br />This is what I am looking for:<br /><a href="http://forexverified.com/ppsupport/desired.gif" target="_blank" rel="nofollow">http://forexverified.com/ppsupport/desired.gif</a><br /><br />Any ideas?<br /><br />Scott<br />]]></description>
   </item>
   <item>
      <title>Launching a gallery, from an image that is not a part of a gallery</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5160/launching-a-gallery-from-an-image-that-is-not-a-part-of-a-gallery</link>
      <pubDate>Thu, 08 Mar 2012 18:14:46 -0500</pubDate>
      <dc:creator>soloo</dc:creator>
      <guid isPermaLink="false">5160@/discussions</guid>
      <description><![CDATA[I have a problem with launching a gallery, from an image that is not a part of a gallery. Basically I have couple of thumbnails that create a gallery [gallery1]. But I also have an image with a logo of this gallery, that I want to be clickable and it should load first item from [gallery1]. So basically something like:<br /><br />&lt; a href="images/g1.jpg" rel="prettyPhoto[gallery1]"&gt;&lt; img src="images/gallery1_logo.jpg" /&gt;&lt; /a&gt;<br />&lt; a href="images/g1.jpg" rel="prettyPhoto[gallery1]"&gt;&lt; img src="images/g1_thumb.jpg" /&gt;&lt; /a&gt;<br />&lt; a href="images/g2.jpg" rel="prettyPhoto[gallery1]"&gt;&lt; img src="images/g2_thumb.jpg" /&gt;&lt; /a&gt;<br />&lt; a href="images/g3.jpg" rel="prettyPhoto[gallery1]"&gt;&lt; img src="images/g3_thumb.jpg" /&gt;&lt; /a&gt;<br />&lt; a href="images/g4.jpg" rel="prettyPhoto[gallery1]"&gt;&lt; img src="images/g4_thumb.jpg" /&gt;&lt; /a&gt;<br /><br />The problem is that this makes the first item double. How to make a link without adding anything to the gallery? ]]></description>
   </item>
   <item>
      <title>Need Help with AJAX Navigation</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5395/need-help-with-ajax-navigation</link>
      <pubDate>Wed, 18 Apr 2012 03:17:35 -0400</pubDate>
      <dc:creator>awadheshm</dc:creator>
      <guid isPermaLink="false">5395@/discussions</guid>
      <description><![CDATA[Hi Guys,<br /><br />Can someone help me as my prettyPhoto does not work for 2nd page. I have AJAX gallery where I am showing 8 images per page. prettyPhoto works for first 8 image but when I say next &amp; load next 8 image it not working, instead opening all image as a link.<br /><br /><a href="http://www.kissanpur.co.in/index5.php" target="_blank" rel="nofollow">http://www.kissanpur.co.in/index5.php</a><br />login : awadheshm@gmail.com<br />pass: rism1234<br /><br />Once login click on gallery link on page &amp; then it will show photo gallery section.<br /><br />Please help me on this.<br /><br />Thanks!<br />Awadhesh]]></description>
   </item>
   <item>
      <title>Automatically populate link with the current url</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5461/automatically-populate-link-with-the-current-url</link>
      <pubDate>Thu, 10 May 2012 13:32:55 -0400</pubDate>
      <dc:creator>babyewok</dc:creator>
      <guid isPermaLink="false">5461@/discussions</guid>
      <description><![CDATA[I am trying to add a Pinit (Pinterest) button to the social tools.  I can add the button itself, the issue is with the url to 'pin'.  Th efacebook button uses {location_html} for this, but this doesn't seem to work for the pinteerst button - it just prints {location_html}.<br /><br />Additionally, I also need to do something similar for the IMAGE url.<br /><br />Any ideas idea aon how I can get this working?  I feel like I'm so close!]]></description>
   </item>
   <item>
      <title>How to hide prettyPhoto Navigation buttons</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5460/how-to-hide-prettyphoto-navigation-buttons</link>
      <pubDate>Thu, 10 May 2012 12:41:30 -0400</pubDate>
      <dc:creator>maloty</dc:creator>
      <guid isPermaLink="false">5460@/discussions</guid>
      <description><![CDATA[I am using the prettyPhoto WP plugin with in-line content, i.e. forms and it works perfectly, however the navigation buttons within the window navigate through various forms on the page which I don't want to happen.<br /><br />Does anyone know how to disable the navigation buttons ?<br /><br />Cheers<br /><br />Scott]]></description>
   </item>
   <item>
      <title>Add Pinit Button to Social Tools</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5459/add-pinit-button-to-social-tools</link>
      <pubDate>Thu, 10 May 2012 08:30:50 -0400</pubDate>
      <dc:creator>babyewok</dc:creator>
      <guid isPermaLink="false">5459@/discussions</guid>
      <description><![CDATA[Has anyone managed to add a Pinit button to the social tools?  This section should be easier to update with custom tools!]]></description>
   </item>
   <item>
      <title>Iframes from Google Maps infowindows</title>
      <link>http://forums.no-margin-for-errors.com/discussion/5458/iframes-from-google-maps-infowindows</link>
      <pubDate>Wed, 09 May 2012 21:39:16 -0400</pubDate>
      <dc:creator>research</dc:creator>
      <guid isPermaLink="false">5458@/discussions</guid>
      <description><![CDATA[Hi all.<br />I am having some difficulties with prettyPhoto. I am trying to launch an iframe from a Google Maps infowindow. My basic prettyPhoto code is:<br /><br /><br />$(document).ready(function(){$("a[rel^='prettyPhoto']").prettyPhoto({animationSpeed: 'normal',<br />opacity: 0.60,allow_resize: false,<br />default_width: 600,<br />default_height: 400,<br />deeplinking: false,<br />show_title: false,<br />theme: 'light_rounded',<br />social_tools: false,<br />gallery_markup: false<br />});<br />  });<br /><br /><br />On the Google Maps page, I have quite a few different points which are pulled from a database. To accomodate all these, I am using a simple Javascript array along the lines of:<br /><br /><br />var sites = [['<table border="0" cellspacing="1" cellpadding="1"><tr><td valign="top">Name:</td><td valign="top"><i>item 1</i></td></tr><tr><td valign="top">Collection date:</td><td valign="top">01-01-1970</td></tr><tr><td valign="top">Latitude:</td><td valign="top">-20.5</td></tr><tr><td valign="top">Longitude:</td><td valign="top">148.5</td></tr><tr><td valign="top" colspan="2"><a rel="prettyPhoto[iframe] nofollow" href="mappointdetails.php?iframe=true&amp;width=800&amp;height=450&amp;id=AVH123">More information</a></td></tr></table>', -20.5, 148.5,'AVH123'],['<table border="0" cellspacing="1" cellpadding="1"><tr><td valign="top">Name:</td><td valign="top"><i>item 2</i></td></tr><tr><td valign="top">Collection date:</td><td valign="top">01-01-1970</td></tr><tr><td valign="top">Latitude:</td><td valign="top">-20.5</td></tr><tr><td valign="top">Longitude:</td><td valign="top">148.5</td></tr><tr><td valign="top" colspan="2"><a rel="prettyPhoto[iframe] nofollow" href="mappointdetails.php?iframe=true&amp;width=800&amp;height=450&amp;id=AVH234">More information</a></td></tr></table>', -20.5, 148.5,'AVH234']]<br /><br />The general idea is that when the link in the infowindow is clicked it should bring up an iframe which has the details on the entry. The link works fine but for all the variations I've tried, I cannot get this to open as an iframe, it goes straight to the linked page. I've tried using just the iframe linking code on the page (outside of the Javascript) array and it works fine, iframe opens and all. But in page, no joy. Any suggestions? I've seen a few different things about using callbacks and what not but surely nothing as complicated should be required? Piecing together the documentation on the API and callbacks is doing my head in. Any help would be appreciated. Thanks.<br /><br />Oh I should mention, I read someone else was having a similar problem with content from infowindows but this appears to affect Mozilla, Chrome and IE, not just Chrome.<br /><br /><br /><br />]]></description>
   </item>
   </channel>
</rss>
