<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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>Vfxdude &#187; Tag: thumbnail - Recent Posts</title>
		<link>http://www.vfxdude.com/forum/tags/thumbnail</link>
		<description>premium wordpress themes</description>
		<language>en-US</language>
		<pubDate>Thu, 09 Feb 2012 06:39:06 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.vfxdude.com/forum/search.php</link>
		</textInput>
		<atom:link href="http://www.vfxdude.com/forum/rss/tags/thumbnail" rel="self" type="application/rss+xml" />

		<item>
			<title>vfxdude on "Thumbnails on the same row"</title>
			<link>http://www.vfxdude.com/forum/topic/thumbnails-on-the-same-row#post-7312</link>
			<pubDate>Wed, 21 Sep 2011 10:11:14 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">7312@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;the thumbs should be automatically resized to fit the page, but you probably have set the &#34;Thumb Width 2&#34; setting to 100. Remove it and it will fit the page again, but there will be the default 2 columns. If you upgrade to the latest version of the theme you can add this code to the bottom of functions.php to use shortcodes (before the &#60;code&#62;?&#38;gt;&#60;/code&#62;):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function addPostThumbs () {
 $sc = &#38;#39;
   [bfthumbs category=&#38;quot;featured&#38;quot; numcols=&#38;quot;6&#38;quot; width=&#38;quot;120&#38;quot;]
   [bfyarpp template=&#38;quot;yarpp-template&#38;quot;]
 &#38;#39;;
 do_shortcode($sc);
}
add_action( &#38;#39;bf_after_comments&#38;#39;, &#38;#39;addPostThumbs&#38;#39; );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;the bfyarpp shortcode is new in 1.4.1. And to use it you must enable the template system and create a new template with the name you specify in the shortcode. Then add a bfthumbs, like this:&#60;br /&#62;
&#60;code&#62;[bfthumbs sid=&#34;bfthumbs-yarpp&#34; numposts=&#34;5&#34; numcols=&#34;5&#34; width=&#34;100&#34;]&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Another solution is to use the new &#60;a href=&#34;http://www.youtube.com/user/vfxdudedotcom#p/u/0/mzFXQVhiNOs&#34;&#62;shortcode template system&#60;/a&#62; for the single view page (upgrade to version 1.4.1.1). I realize the shortcode template system can seem a bit complicated, so I'm working on a set of templates that can be imported and just used, without knowing any of how all the shortcodes work.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jmskurtz on "Thumbnails on the same row"</title>
			<link>http://www.vfxdude.com/forum/topic/thumbnails-on-the-same-row#post-7294</link>
			<pubDate>Thu, 15 Sep 2011 14:42:12 +0000</pubDate>
			<dc:creator>jmskurtz</dc:creator>
			<guid isPermaLink="false">7294@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;I'm having the same problem : &#60;a href=&#34;http://jillm.com/2011/09/15/introverted-days/&#34; rel=&#34;nofollow&#34;&#62;http://jillm.com/2011/09/15/introverted-days/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Where do I put this [bfthumbs category=&#34;featured&#34; numcols=&#34;6&#34; width=&#34;120&#34;] ?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "related post with thumbnail above comment"</title>
			<link>http://www.vfxdude.com/forum/topic/related-post-with-thumbnail-above-comment#post-6626</link>
			<pubDate>Fri, 27 May 2011 09:34:22 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">6626@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;adding the code to a child theme functions php will work, just rename the remove_actions function name if there's another function there with the same name.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kimbel on "related post with thumbnail above comment"</title>
			<link>http://www.vfxdude.com/forum/topic/related-post-with-thumbnail-above-comment#post-6625</link>
			<pubDate>Thu, 26 May 2011 19:31:40 +0000</pubDate>
			<dc:creator>kimbel</dc:creator>
			<guid isPermaLink="false">6625@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;how do i make it so that it stays above comment, not below comment?&#60;/p&#62;
&#60;p&#62;i saw vfxdude mention this code&#60;/p&#62;
&#60;p&#62;&#60;code&#62;add_action( 'bf_after_article', 'bf_yarpp' );&#60;br /&#62;
add_action( 'wp_head', 'remove_actions' );&#60;br /&#62;
function remove_actions() { add_action( 'bf_after_comments', 'bf_yarpp' ); }&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;but you also said&#60;/p&#62;
&#60;p&#62;&#60;blockquote&#62;btw, just realised the reason why driftingfocus got a blank site...because the remove_actions function was already in functions.php. &#60;/blockquote&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "&#34;not found&#34; error on frontpage"</title>
			<link>http://www.vfxdude.com/forum/topic/not-found-error-on-frontpage#post-6328</link>
			<pubDate>Wed, 13 Apr 2011 17:49:01 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">6328@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;it's because you are using the thumbnails template when you should been using the &#34;no sidebar&#34; page template.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>devanslive on "&#34;not found&#34; error on frontpage"</title>
			<link>http://www.vfxdude.com/forum/topic/not-found-error-on-frontpage#post-6310</link>
			<pubDate>Thu, 07 Apr 2011 15:17:07 +0000</pubDate>
			<dc:creator>devanslive</dc:creator>
			<guid isPermaLink="false">6310@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;Hello, At the test site &#60;a href=&#34;http://www.dionevanslive.com/crb&#34; rel=&#34;nofollow&#34;&#62;http://www.dionevanslive.com/crb&#60;/a&#62; there is an error beneath the Thumbnails that says &#34;not found&#34; it does this because it is trying to pull blog posts from the blog to the front page, but there is no blog to pull&#38;gt; How do I get rid of that &#34;not found&#34; error? Thank you
&#60;/p&#62;</description>
		</item>
		<item>
			<title>devanslive on "Thumbnails on the same row"</title>
			<link>http://www.vfxdude.com/forum/topic/thumbnails-on-the-same-row#post-6302</link>
			<pubDate>Wed, 06 Apr 2011 15:22:37 +0000</pubDate>
			<dc:creator>devanslive</dc:creator>
			<guid isPermaLink="false">6302@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;Works great! Thanks...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Thumbnails on the same row"</title>
			<link>http://www.vfxdude.com/forum/topic/thumbnails-on-the-same-row#post-6301</link>
			<pubDate>Wed, 06 Apr 2011 14:32:14 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">6301@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;use the numcols parameter, like this:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;[bfthumbs category=&#34;featured&#34; numcols=&#34;6&#34; width=&#34;120&#34;]&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>devanslive on "Thumbnails on the same row"</title>
			<link>http://www.vfxdude.com/forum/topic/thumbnails-on-the-same-row#post-6298</link>
			<pubDate>Wed, 06 Apr 2011 14:11:51 +0000</pubDate>
			<dc:creator>devanslive</dc:creator>
			<guid isPermaLink="false">6298@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;Good morning, I am wokring on a website at dionevanslive.com/ojb. I used shortcodes to make the sizes what I want them, but they are still going on two rows. How do I make this particular set of thumbnails go on the same row? Thank you
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Page/Post Thumbnail Title"</title>
			<link>http://www.vfxdude.com/forum/topic/pagepost-thumbnail-title#post-6155</link>
			<pubDate>Mon, 28 Mar 2011 08:47:27 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">6155@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;you can enable cufon for the thumbnails posts by selecting h2 in the &#34;Use Cufon font replacement for&#34; section (typography tab).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>devanslive on "Page/Post Thumbnail Title"</title>
			<link>http://www.vfxdude.com/forum/topic/pagepost-thumbnail-title#post-6140</link>
			<pubDate>Fri, 25 Mar 2011 19:13:46 +0000</pubDate>
			<dc:creator>devanslive</dc:creator>
			<guid isPermaLink="false">6140@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;Hello, I am working on a site &#60;a href=&#34;http://www.dionevanslive.com/ojb&#34; rel=&#34;nofollow&#34;&#62;http://www.dionevanslive.com/ojb&#60;/a&#62;. I have bfthumbs on the frontpage calling for pages and they work fine. However, I had an issue that when I went to the page there was no title, it only showed below the thumbnail. You gave me the solution to enter the HTML code for each page as &#38;lt;h1&#38;gt;Page Title&#38;lt;h1&#38;gt; so the title would be listed at the top of the page. That worked, however, when I do that it shows a bold title and smaller non bold title at the bottom of the thumbnail. I only want to show the bold title there, but still have the title at the top of my page when I get there. Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Thumbnails"</title>
			<link>http://www.vfxdude.com/forum/topic/thumbnails#post-6129</link>
			<pubDate>Fri, 25 Mar 2011 11:16:31 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">6129@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;&#60;code&#62;[bfthumbs id=&#34;21,32,43&#34; numposts=&#34;3&#34;]&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;this will list 3 posts/pages with these IDs.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>devanslive on "Thumbnails"</title>
			<link>http://www.vfxdude.com/forum/topic/thumbnails#post-6101</link>
			<pubDate>Wed, 23 Mar 2011 15:16:40 +0000</pubDate>
			<dc:creator>devanslive</dc:creator>
			<guid isPermaLink="false">6101@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;Thank you. Does that ID get inserted into the SHORTCODE for the bfthumbnail? The shortcode for the bfthumbnail is here... [ bfthumbs category=&#34;featured&#34; numposts=&#34;3&#34; ]. I tried to edit it with the ID's like you mentioned, but it is not working. This is what I changed it to [bfthumbs post=54 numposts=&#34;3&#34;]&#60;/p&#62;
&#60;p&#62;The site I am working on is &#60;a href=&#34;http://www.dionevanslive.com/ojb&#34; rel=&#34;nofollow&#34;&#62;http://www.dionevanslive.com/ojb&#60;/a&#62;. On the homescreen I am trying to have each thumbnail (3 going across)each pull a different page. Thanks!&#60;/p&#62;
&#60;p&#62;Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Thumbnails"</title>
			<link>http://www.vfxdude.com/forum/topic/thumbnails#post-6093</link>
			<pubDate>Wed, 23 Mar 2011 11:33:44 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">6093@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;you can add an id parameter, like this &#60;code&#62;id=&#34;21,32,43&#34;&#60;/code&#62;. The id can be found in the url when editing a page/post (post=43).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>devanslive on "Thumbnails"</title>
			<link>http://www.vfxdude.com/forum/topic/thumbnails#post-6085</link>
			<pubDate>Tue, 22 Mar 2011 18:08:57 +0000</pubDate>
			<dc:creator>devanslive</dc:creator>
			<guid isPermaLink="false">6085@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;Hello, I am using the thumbnails that show up on the frontpage. They call for POSTS and CATEGORIES within those posts. Is there a way for these thumbnails to call for PAGES instead? Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kimbel on "two tweet button and thumbnail auto enlarge itself"</title>
			<link>http://www.vfxdude.com/forum/topic/two-tweet-button-and-thumbnail-auto-enlarge-itself-2#post-5424</link>
			<pubDate>Tue, 01 Feb 2011 16:18:05 +0000</pubDate>
			<dc:creator>kimbel</dc:creator>
			<guid isPermaLink="false">5424@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;I have remove styling and set as manual for the tweet meme. tick retweet in meta info setting yet the tweet button shows up inside post.&#60;/p&#62;
&#60;p&#62;2nd problem;&#60;/p&#62;
&#60;p&#62;thumbnail doesn't work. after post done loading it will revert to it's original size.&#60;/p&#62;
&#60;p&#62;example:&#60;/p&#62;
&#60;p&#62;[url=http://dungun.net/2010/02/silat-pongok-aliran-panglima-hitam-tambun/[/url]&#60;/p&#62;
&#60;p&#62;the thumbnail post should be 195x177 only.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>focusonit on "Problems with bfthumbs and Vimeo ?"</title>
			<link>http://www.vfxdude.com/forum/topic/problems-with-bfthumbs-and-vimeo#post-5197</link>
			<pubDate>Thu, 06 Jan 2011 16:28:16 +0000</pubDate>
			<dc:creator>focusonit</dc:creator>
			<guid isPermaLink="false">5197@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;OK, it's fixed... don't know what happened...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>focusonit on "Problems with bfthumbs and Vimeo ?"</title>
			<link>http://www.vfxdude.com/forum/topic/problems-with-bfthumbs-and-vimeo#post-5196</link>
			<pubDate>Thu, 06 Jan 2011 14:56:52 +0000</pubDate>
			<dc:creator>focusonit</dc:creator>
			<guid isPermaLink="false">5196@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;I've just tried with youtube, no problem, the preview appears as it should...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>focusonit on "Problems with bfthumbs and Vimeo ?"</title>
			<link>http://www.vfxdude.com/forum/topic/problems-with-bfthumbs-and-vimeo#post-5195</link>
			<pubDate>Thu, 06 Jan 2011 14:54:11 +0000</pubDate>
			<dc:creator>focusonit</dc:creator>
			<guid isPermaLink="false">5195@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
I've never had troubles with vimeo and automatic preview thumbnails. It was clear and really simple...&#60;br /&#62;
I've just seen that it doesn't work anymore since this morning... Anyone has the same problem ?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.focusonit.fr/focusonit/blog/miniablog/&#34; rel=&#34;nofollow&#34;&#62;http://www.focusonit.fr/focusonit/blog/miniablog/&#60;/a&#62; (&#34;NYC - Diapo photos&#34;, &#34;Isabelle et Remy, le diaporama&#34; ...)&#60;/p&#62;
&#60;p&#62;Thanks !!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Thumbnails not loading."</title>
			<link>http://www.vfxdude.com/forum/topic/thumbnails-not-loading#post-4827</link>
			<pubDate>Mon, 22 Nov 2010 12:21:40 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">4827@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;timthumb got a problem with ~ in the image url, choose the &#34;Enable timthumb quirks mode&#34; in the theme settings for a workaround (until a domain is installed).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Terje Asphaug on "Thumbnails not loading."</title>
			<link>http://www.vfxdude.com/forum/topic/thumbnails-not-loading#post-4795</link>
			<pubDate>Sun, 21 Nov 2010 01:19:59 +0000</pubDate>
			<dc:creator>Terje Asphaug</dc:creator>
			<guid isPermaLink="false">4795@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;I can see them? &#60;a href=&#34;http://min.us/mv5lmA&#34; rel=&#34;nofollow&#34;&#62;http://min.us/mv5lmA&#60;/a&#62; If it's the gallery page, I get a 404
&#60;/p&#62;</description>
		</item>
		<item>
			<title>smccay on "Thumbnails not loading."</title>
			<link>http://www.vfxdude.com/forum/topic/thumbnails-not-loading#post-4791</link>
			<pubDate>Sat, 20 Nov 2010 23:53:02 +0000</pubDate>
			<dc:creator>smccay</dc:creator>
			<guid isPermaLink="false">4791@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;My thumbnail images are not loading: &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://69.89.31.149/~twentywo/&#34; rel=&#34;nofollow&#34;&#62;http://69.89.31.149/~twentywo/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;This seems like it may be a common file path problem. Do you have some documentation on how to fix this? &#60;/p&#62;
&#60;p&#62;Thanks. &#60;/p&#62;
&#60;p&#62;Sam
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Default Thumbnail"</title>
			<link>http://www.vfxdude.com/forum/topic/default-thumbnail#post-4481</link>
			<pubDate>Wed, 20 Oct 2010 11:55:25 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">4481@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;nope, there's no such functionality.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>The Blog Guy on "Default Thumbnail"</title>
			<link>http://www.vfxdude.com/forum/topic/default-thumbnail#post-4475</link>
			<pubDate>Tue, 19 Oct 2010 16:07:28 +0000</pubDate>
			<dc:creator>The Blog Guy</dc:creator>
			<guid isPermaLink="false">4475@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;Yes, I suppose you could put it that way. Basically, not all posts will have images affiliated with them, but we're using category archives that have thumbnails built in... for those posts that don't have images, we want to use a logo as the thumbnail on those category archives.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Default Thumbnail"</title>
			<link>http://www.vfxdude.com/forum/topic/default-thumbnail#post-4468</link>
			<pubDate>Mon, 18 Oct 2010 21:16:06 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">4468@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;not sure I understand. Are you talking about a placeholder for the thumbnail images?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>The Blog Guy on "Default Thumbnail"</title>
			<link>http://www.vfxdude.com/forum/topic/default-thumbnail#post-4466</link>
			<pubDate>Mon, 18 Oct 2010 20:17:50 +0000</pubDate>
			<dc:creator>The Blog Guy</dc:creator>
			<guid isPermaLink="false">4466@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;Is it possible to set a default sitewide thumbnail image that will appear on posts unless a &#34;Thumnbail image URL&#34; is entered on an individual post's Big Feature settings?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Andreas on "Thumbnail links"</title>
			<link>http://www.vfxdude.com/forum/topic/thumbnail-links-1#post-3897</link>
			<pubDate>Tue, 14 Sep 2010 18:22:20 +0000</pubDate>
			<dc:creator>Andreas</dc:creator>
			<guid isPermaLink="false">3897@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;Endless appreciation!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Thumbnail links"</title>
			<link>http://www.vfxdude.com/forum/topic/thumbnail-links-1#post-3883</link>
			<pubDate>Tue, 14 Sep 2010 09:58:58 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">3883@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;well there's where the filter comes in, but there are always easier ways to do stuff though. Like add it with jquery.&#60;/p&#62;
&#60;p&#62;1. add a class to the bfthumbs shortcode: class=&#34;mythumbs&#34;&#60;br /&#62;
2. add this code to the page where the shortcode is:&#60;br /&#62;
&#60;code&#62;&#38;lt;script&#38;gt;jQuery(function($){ $('.mythumbs a').attr('target', '_blank') });&#38;lt;/script&#38;gt;&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Andreas on "Thumbnail links"</title>
			<link>http://www.vfxdude.com/forum/topic/thumbnail-links-1#post-3876</link>
			<pubDate>Tue, 14 Sep 2010 02:09:45 +0000</pubDate>
			<dc:creator>Andreas</dc:creator>
			<guid isPermaLink="false">3876@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;Hey, another question regarding these links, I need them to have _blank as well, as they are links to partners pages, the client wants them in a new window. Any easy fix to this? I tried to add target=&#34;_blank&#34; in themes functions for bfthumbs but with no luck.&#60;/p&#62;
&#60;p&#62;Thanks,
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Andreas on "Thumbnail links"</title>
			<link>http://www.vfxdude.com/forum/topic/thumbnail-links-1#post-3834</link>
			<pubDate>Wed, 08 Sep 2010 11:26:01 +0000</pubDate>
			<dc:creator>Andreas</dc:creator>
			<guid isPermaLink="false">3834@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;That was actually the one I installed! Thanks
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>

