<?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: Draggable Image Boxes Grid</title>
	<atom:link href="http://tympanus.net/codrops/2011/10/07/draggable-image-boxes-grid/feed/" rel="self" type="application/rss+xml" />
	<link>http://tympanus.net/codrops/2011/10/07/draggable-image-boxes-grid/</link>
	<description>Useful resources and inspiration for creative minds</description>
	<lastBuildDate>Thu, 23 May 2013 21:38:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Krzyho</title>
		<link>http://tympanus.net/codrops/2011/10/07/draggable-image-boxes-grid/comment-page-5/#comment-420992</link>
		<dc:creator>Krzyho</dc:creator>
		<pubDate>Sat, 09 Jun 2012 12:16:04 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=6002#comment-420992</guid>
		<description><![CDATA[I update Gridfolio theme to ver. 1.2.2
I added new cool feature, so if you want to add some descriptions into your pic in portfolio page, just upgrade your theme to 1.2.2.
more info: http://kbdesign.bdl.pl/?p=3606]]></description>
		<content:encoded><![CDATA[<p>I update Gridfolio theme to ver. 1.2.2<br />
I added new cool feature, so if you want to add some descriptions into your pic in portfolio page, just upgrade your theme to 1.2.2.<br />
more info: <a href="http://kbdesign.bdl.pl/?p=3606" rel="nofollow">http://kbdesign.bdl.pl/?p=3606</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: quiet0ne</title>
		<link>http://tympanus.net/codrops/2011/10/07/draggable-image-boxes-grid/comment-page-5/#comment-420982</link>
		<dc:creator>quiet0ne</dc:creator>
		<pubDate>Fri, 08 Jun 2012 18:18:36 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=6002#comment-420982</guid>
		<description><![CDATA[Hi Josh!

Links in the content areas is a quick fix. There are three areas that will need to be updated: the markup, the CSS, and the jquery. The problem is how the markup is structured - each &quot;box&quot; is created with an anchor tag, originally. Referencing the &quot;Markup&quot; box above:

Original:
&lt;a href=&quot;#&quot; rel=&quot;nofollow&quot;&gt;
  
    Welcome Howdy, Stranger
  
  
    &lt;!-- Some content --&gt;
  
&lt;/a&gt;

What you need to change it to:

  
    Welcome Howdy, Stranger
  
  
    &lt;!-- Some content --&gt;

Naturally you&#039;ll need to update your CSS to reference this change. Use the new class you should&#039;ve added. 

Finally, you need to update the jQuery framework, too: 

Original:
$ibItems = $ibWrapper.find(&#039;div.ib-main &gt; a&#039;),

Updated:
$ibItems = $ibWrapper.find(&#039;div.ib-main &gt; .givethisboxasecondclassforcssmcloving&#039;),

That should do the trick! Good luck!]]></description>
		<content:encoded><![CDATA[<p>Hi Josh!</p>
<p>Links in the content areas is a quick fix. There are three areas that will need to be updated: the markup, the CSS, and the jquery. The problem is how the markup is structured &#8211; each &#8220;box&#8221; is created with an anchor tag, originally. Referencing the &#8220;Markup&#8221; box above:</p>
<p>Original:<br />
&lt;a href=&#8221;#&#8221; rel=&#8221;nofollow&#8221;&gt;</p>
<p>    Welcome Howdy, Stranger</p>
<p>    &lt;!&#8211; Some content &#8211;&gt;</p>
<p>&lt;/a&gt;</p>
<p>What you need to change it to:</p>
<p>    Welcome Howdy, Stranger</p>
<p>    &lt;!&#8211; Some content &#8211;&gt;</p>
<p>Naturally you&#8217;ll need to update your CSS to reference this change. Use the new class you should&#8217;ve added. </p>
<p>Finally, you need to update the jQuery framework, too: </p>
<p>Original:<br />
$ibItems = $ibWrapper.find(&#8216;div.ib-main &gt; a&#8217;),</p>
<p>Updated:<br />
$ibItems = $ibWrapper.find(&#8216;div.ib-main &gt; .givethisboxasecondclassforcssmcloving&#8217;),</p>
<p>That should do the trick! Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://tympanus.net/codrops/2011/10/07/draggable-image-boxes-grid/comment-page-5/#comment-420720</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Tue, 29 May 2012 16:35:45 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=6002#comment-420720</guid>
		<description><![CDATA[Hey everyone! Using some algebra I found a way to display all images correctly regardless of size or proportion. In the script section scroll to the section that defines the window height, width, etc. (w_w, w_h, all that code) and use this instead:

								if( r_w &gt; r_i ) {
								
									new_h	= (w_h - 40);
									new_w	= (i_w * (w_h - 40)) / i_h;
								
								}	
								else {
								
									new_h	= (w_h - 40);
									new_w	= (i_w * (w_h - 40)) / i_h;

Brief explanation: the top bar height is 40px, so we subtract that from the window height to get the proper height of the image, then from there I used a proportion to come up with the formula you see for new_w that correctly sets the width according to the height.

And yet I still cannot figure out how to put links in the content areas. :p]]></description>
		<content:encoded><![CDATA[<p>Hey everyone! Using some algebra I found a way to display all images correctly regardless of size or proportion. In the script section scroll to the section that defines the window height, width, etc. (w_w, w_h, all that code) and use this instead:</p>
<p>								if( r_w &gt; r_i ) {</p>
<p>									new_h	= (w_h &#8211; 40);<br />
									new_w	= (i_w * (w_h &#8211; 40)) / i_h;</p>
<p>								}<br />
								else {</p>
<p>									new_h	= (w_h &#8211; 40);<br />
									new_w	= (i_w * (w_h &#8211; 40)) / i_h;</p>
<p>Brief explanation: the top bar height is 40px, so we subtract that from the window height to get the proper height of the image, then from there I used a proportion to come up with the formula you see for new_w that correctly sets the width according to the height.</p>
<p>And yet I still cannot figure out how to put links in the content areas. :p</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vyer</title>
		<link>http://tympanus.net/codrops/2011/10/07/draggable-image-boxes-grid/comment-page-5/#comment-420526</link>
		<dc:creator>vyer</dc:creator>
		<pubDate>Wed, 23 May 2012 06:09:48 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=6002#comment-420526</guid>
		<description><![CDATA[nice tuts..]]></description>
		<content:encoded><![CDATA[<p>nice tuts..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: quiet0ne</title>
		<link>http://tympanus.net/codrops/2011/10/07/draggable-image-boxes-grid/comment-page-4/#comment-420136</link>
		<dc:creator>quiet0ne</dc:creator>
		<pubDate>Fri, 18 May 2012 18:10:44 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=6002#comment-420136</guid>
		<description><![CDATA[We worked out a solution using jquery swfaddress. Thank you again for this framework!]]></description>
		<content:encoded><![CDATA[<p>We worked out a solution using jquery swfaddress. Thank you again for this framework!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lorenzo</title>
		<link>http://tympanus.net/codrops/2011/10/07/draggable-image-boxes-grid/comment-page-5/#comment-420129</link>
		<dc:creator>Lorenzo</dc:creator>
		<pubDate>Fri, 18 May 2012 09:34:50 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=6002#comment-420129</guid>
		<description><![CDATA[How to show the vertical scroll bar?
Please help me....]]></description>
		<content:encoded><![CDATA[<p>How to show the vertical scroll bar?<br />
Please help me&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: quiet0ne</title>
		<link>http://tympanus.net/codrops/2011/10/07/draggable-image-boxes-grid/comment-page-4/#comment-420085</link>
		<dc:creator>quiet0ne</dc:creator>
		<pubDate>Wed, 16 May 2012 22:47:07 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=6002#comment-420085</guid>
		<description><![CDATA[Hey Matt,

You&#039;ll need to modify: 1) the variables the plugin pulls from the grid page and, 2) the jquery-tmpl scripts to use the new variables. Be sure to update it for both &quot;opening&quot; and &quot;navigating&quot; functions, and you should have it in no time. This is also the part of the plugin that needs to be updated to allow for html content to be included in the photo captions.]]></description>
		<content:encoded><![CDATA[<p>Hey Matt,</p>
<p>You&#8217;ll need to modify: 1) the variables the plugin pulls from the grid page and, 2) the jquery-tmpl scripts to use the new variables. Be sure to update it for both &#8220;opening&#8221; and &#8220;navigating&#8221; functions, and you should have it in no time. This is also the part of the plugin that needs to be updated to allow for html content to be included in the photo captions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: palle</title>
		<link>http://tympanus.net/codrops/2011/10/07/draggable-image-boxes-grid/comment-page-4/#comment-420065</link>
		<dc:creator>palle</dc:creator>
		<pubDate>Wed, 16 May 2012 10:37:07 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=6002#comment-420065</guid>
		<description><![CDATA[Hi. Great gallery. Is there an easy way to devide pictures into albums?]]></description>
		<content:encoded><![CDATA[<p>Hi. Great gallery. Is there an easy way to devide pictures into albums?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: quiet0ne</title>
		<link>http://tympanus.net/codrops/2011/10/07/draggable-image-boxes-grid/comment-page-4/#comment-420045</link>
		<dc:creator>quiet0ne</dc:creator>
		<pubDate>Tue, 15 May 2012 18:31:23 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=6002#comment-420045</guid>
		<description><![CDATA[Hi Mary Lou!  I&#039;m using a hybrid between your build and Krzyho&#039;s WordPress theme. I&#039;m trying to work out how to include &quot;deep linking&quot; similar to swfaddress/hashchange, where an external link can go directly to the page and load that particular box. I&#039;ve worked out a way to give each box its own #hash, but I can&#039;t work out the linking part! Any clues or pointers would be AWESOME, please! Or if/when I work it out I&#039;ll post back too. Thank you for your fantastic and inspiring work~]]></description>
		<content:encoded><![CDATA[<p>Hi Mary Lou!  I&#8217;m using a hybrid between your build and Krzyho&#8217;s WordPress theme. I&#8217;m trying to work out how to include &#8220;deep linking&#8221; similar to swfaddress/hashchange, where an external link can go directly to the page and load that particular box. I&#8217;ve worked out a way to give each box its own #hash, but I can&#8217;t work out the linking part! Any clues or pointers would be AWESOME, please! Or if/when I work it out I&#8217;ll post back too. Thank you for your fantastic and inspiring work~</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Moore</title>
		<link>http://tympanus.net/codrops/2011/10/07/draggable-image-boxes-grid/comment-page-4/#comment-418988</link>
		<dc:creator>Matt Moore</dc:creator>
		<pubDate>Fri, 20 Apr 2012 06:19:28 +0000</pubDate>
		<guid isPermaLink="false">http://tympanus.net/codrops/?p=6002#comment-418988</guid>
		<description><![CDATA[How do I go about adding a 2nd line of info (that differs from photo to photo) to the large image preview?  I&#039;ve been messing with it, I can get it to display, but not dynamically update based on photo (2nd line value just stays the same for all photos). TIA]]></description>
		<content:encoded><![CDATA[<p>How do I go about adding a 2nd line of info (that differs from photo to photo) to the large image preview?  I&#8217;ve been messing with it, I can get it to display, but not dynamically update based on photo (2nd line value just stays the same for all photos). TIA</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 10/25 queries in 0.014 seconds using disk: basic
Content Delivery Network via codropspz.tympanus.netdna-cdn.com

 Served from: tympanus.net @ 2013-05-24 02:49:07 by W3 Total Cache -->