<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress &#8250; Support Tag: thumbs</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Tag: thumbs</description>
<language>en</language>
<pubDate>Thu, 26 Nov 2009 10:56:34 +0000</pubDate>

<item>
<title>pulegium on "Widget to display favourite pages with thumbs"</title>
<link>http://wordpress.org/support/topic/333025#post-1285403</link>
<pubDate>Wed, 18 Nov 2009 09:33:39 +0000</pubDate>
<dc:creator>pulegium</dc:creator>
<guid isPermaLink="false">1285403@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;So I have few pages on my site and I want to display them in a widget. I want them to appear just as thumb images. Bit like default WP pages widget, but I need images and only a selection of pages. Anyone knows anything like that, or shall I pull out my PHP for dummies book? :)&#60;/p&#62;
&#60;p&#62;Cheers!
&#60;/p&#62;</description>
</item>
<item>
<title>TataVostru on "Display only 5 post with thumbs ( wiget ? )"</title>
<link>http://wordpress.org/support/topic/331612#post-1280837</link>
<pubDate>Sat, 14 Nov 2009 00:42:25 +0000</pubDate>
<dc:creator>TataVostru</dc:creator>
<guid isPermaLink="false">1280837@http://wordpress.org/support/</guid>
<description>&#60;p&#62;?
&#60;/p&#62;</description>
</item>
<item>
<title>TataVostru on "Display only 5 post with thumbs ( wiget ? )"</title>
<link>http://wordpress.org/support/topic/331612#post-1280814</link>
<pubDate>Sat, 14 Nov 2009 00:11:00 +0000</pubDate>
<dc:creator>TataVostru</dc:creator>
<guid isPermaLink="false">1280814@http://wordpress.org/support/</guid>
<description>&#60;p&#62;plese put the code for display 3 post for the category ( my categorye's is 2301,2302,2303 )&#60;br /&#62;
I want to use the thumb post .... i use the &#34;homethumb&#34; &#60;/p&#62;
&#60;p&#62;Tanks
&#60;/p&#62;</description>
</item>
<item>
<title>TataVostru on "Display only 5 post with thumbs ( wiget ? )"</title>
<link>http://wordpress.org/support/topic/331612#post-1280796</link>
<pubDate>Fri, 13 Nov 2009 23:54:11 +0000</pubDate>
<dc:creator>TataVostru</dc:creator>
<guid isPermaLink="false">1280796@http://wordpress.org/support/</guid>
<description>&#60;p&#62;do you know anny widget can do that ? i need a widget
&#60;/p&#62;</description>
</item>
<item>
<title>esmi on "Display only 5 post with thumbs ( wiget ? )"</title>
<link>http://wordpress.org/support/topic/331612#post-1280792</link>
<pubDate>Fri, 13 Nov 2009 23:50:37 +0000</pubDate>
<dc:creator>esmi</dc:creator>
<guid isPermaLink="false">1280792@http://wordpress.org/support/</guid>
<description>&#60;p&#62;&#60;a href=&#34;http://codex.wordpress.org/Template_Tags/query_posts&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Template_Tags/query_posts&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>TataVostru on "Display only 5 post with thumbs ( wiget ? )"</title>
<link>http://wordpress.org/support/topic/331612#post-1280789</link>
<pubDate>Fri, 13 Nov 2009 23:49:02 +0000</pubDate>
<dc:creator>TataVostru</dc:creator>
<guid isPermaLink="false">1280789@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I want to display only 5 post in my front page , amd i want to display only 1 category... please help... tanks&#60;/p&#62;
&#60;p&#62;Do you know anny wiget that can do that?
&#60;/p&#62;</description>
</item>
<item>
<title>xmanightx on "Need more thumbnails"</title>
<link>http://wordpress.org/support/topic/330685#post-1277562</link>
<pubDate>Wed, 11 Nov 2009 15:38:35 +0000</pubDate>
<dc:creator>xmanightx</dc:creator>
<guid isPermaLink="false">1277562@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hallo guys. Maybe someone already needed this and solved with some piece of code.&#60;br /&#62;
I need to generate more than the usual 3 thumbs WP with fixed sizes I know (so I don't need an option page to specify size I will just hardcode them).&#60;br /&#62;
Really I need this in Wordpress MU (not regular WP).&#60;br /&#62;
Do you have any suggestion on how to locate the code (and maybe some hint on wich code to add) that generates the 3 thumbs so to add 2-3 more thumbs with the sizes I need?&#60;/p&#62;
&#60;p&#62;Thanks in advance for your kind help&#60;/p&#62;
&#60;p&#62;Max
&#60;/p&#62;</description>
</item>
<item>
<title>jkovis on "Where do I find key for custom fields post pictures?"</title>
<link>http://wordpress.org/support/topic/320328#post-1251181</link>
<pubDate>Mon, 19 Oct 2009 06:09:37 +0000</pubDate>
<dc:creator>jkovis</dc:creator>
<guid isPermaLink="false">1251181@http://wordpress.org/support/</guid>
<description>&#60;p&#62;look for the $key value defined in the &#60;a href=&#34;http://codex.wordpress.org/Function_Reference/get_post_meta&#34;&#62;get_post_meta()&#60;/a&#62; function in your theme's template pages&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
    //$custom_field_value = get_post_meta($post_id, $key, $single);
      $custom_field_value = get_post_meta($post_id, &#38;#39;thumbnail&#38;#39;, $single);

?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>austinnetwork2009 on "Where do I find key for custom fields post pictures?"</title>
<link>http://wordpress.org/support/topic/320328#post-1251150</link>
<pubDate>Mon, 19 Oct 2009 04:35:33 +0000</pubDate>
<dc:creator>austinnetwork2009</dc:creator>
<guid isPermaLink="false">1251150@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I have tried everything except the right way.  How do you add these little pictures??????
&#60;/p&#62;</description>
</item>
<item>
<title>austinnetwork2009 on "Where do I find key for custom fields post pictures?"</title>
<link>http://wordpress.org/support/topic/320328#post-1245112</link>
<pubDate>Tue, 13 Oct 2009 16:13:05 +0000</pubDate>
<dc:creator>austinnetwork2009</dc:creator>
<guid isPermaLink="false">1245112@http://wordpress.org/support/</guid>
<description>&#60;p&#62;anyone had this problem?
&#60;/p&#62;</description>
</item>
<item>
<title>austinnetwork2009 on "Where do I find key for custom fields post pictures?"</title>
<link>http://wordpress.org/support/topic/320328#post-1244630</link>
<pubDate>Tue, 13 Oct 2009 04:59:10 +0000</pubDate>
<dc:creator>austinnetwork2009</dc:creator>
<guid isPermaLink="false">1244630@http://wordpress.org/support/</guid>
<description>&#60;p&#62;How do I enter different pictures for either of the sites?  I am having same problem with both sites.
&#60;/p&#62;</description>
</item>
<item>
<title>esmi on "Where do I find key for custom fields post pictures?"</title>
<link>http://wordpress.org/support/topic/320328#post-1244173</link>
<pubDate>Mon, 12 Oct 2009 20:41:46 +0000</pubDate>
<dc:creator>esmi</dc:creator>
<guid isPermaLink="false">1244173@http://wordpress.org/support/</guid>
<description>&#60;p&#62;What makes you think you need a custom field? Those sites use 2 completely different themes.
&#60;/p&#62;</description>
</item>
<item>
<title>austinnetwork2009 on "Where do I find key for custom fields post pictures?"</title>
<link>http://wordpress.org/support/topic/320328#post-1244048</link>
<pubDate>Mon, 12 Oct 2009 18:58:45 +0000</pubDate>
<dc:creator>austinnetwork2009</dc:creator>
<guid isPermaLink="false">1244048@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I cannot figure out where to find the key name for the custom field to add different pictures to blog posts for these websites &#60;a href=&#34;http://www.austin-network.com&#34; rel=&#34;nofollow&#34;&#62;http://www.austin-network.com&#60;/a&#62; and for &#60;a href=&#34;http://www.homesinsouthaustin.com&#34; rel=&#34;nofollow&#34;&#62;http://www.homesinsouthaustin.com&#60;/a&#62;.  Is this all I need to be able to add different pics with different posts?
&#60;/p&#62;</description>
</item>
<item>
<title>lipmanaj on "Thumbnails of post images do not show on Frontpage"</title>
<link>http://wordpress.org/support/topic/316784#post-1231627</link>
<pubDate>Thu, 01 Oct 2009 16:40:20 +0000</pubDate>
<dc:creator>lipmanaj</dc:creator>
<guid isPermaLink="false">1231627@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I am using Wordpress 2.8. Theme is New Yorker 2 by Stylewp/StudioBurst/InType Media.&#60;/p&#62;
&#60;p&#62;The theme is designed to automatically show thumbnails of the images that are uploaded via the image uploader and embedded in posts on the frontpage--like the New York Times front page.&#60;/p&#62;
&#60;p&#62;However, no thumbnails are showing on the front page, although images do show on the posts themselves.&#60;/p&#62;
&#60;p&#62;Any suggestions? I have searched the knowledge base but have not yet found a solution.&#60;/p&#62;
&#60;p&#62;The website is &#60;a href=&#34;http://www.lipmantimes.com&#34; rel=&#34;nofollow&#34;&#62;http://www.lipmantimes.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>dekraan on "does anyone know how..?"</title>
<link>http://wordpress.org/support/topic/315638#post-1227551</link>
<pubDate>Mon, 28 Sep 2009 13:26:34 +0000</pubDate>
<dc:creator>dekraan</dc:creator>
<guid isPermaLink="false">1227551@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Who knows how the following slider-function is made? I am talking about the big slider, with the smaller bar of thumbs on the homepage of &#60;a href=&#34;http://www.mangrove.nl&#34;&#62;this site&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;If I understand it correctly, the smaller bar of thumbs is used to navigate through the big slider faster. But how?&#60;/p&#62;
&#60;p&#62;I know there are plugins that make the topslider, and ones that make the bar of smaller thumbs underneath. But how do you make one where you got the small thumbs to navigate through the large slider? And then put your posts ofcourse in the large slider?&#60;/p&#62;
&#60;p&#62;I am an amateur, so if anyone knows this, or knows where to get something similar, please explain it almost in a childlike manner :-)&#60;/p&#62;
&#60;p&#62;My thanks is great!
&#60;/p&#62;</description>
</item>
<item>
<title>iridiax on "PhpThumb utterly broken!"</title>
<link>http://wordpress.org/support/topic/314897#post-1225248</link>
<pubDate>Sat, 26 Sep 2009 00:26:38 +0000</pubDate>
<dc:creator>iridiax</dc:creator>
<guid isPermaLink="false">1225248@http://wordpress.org/support/</guid>
<description>&#60;p&#62;&#60;code&#62;&#38;lt;img src=&#38;quot;&#38;quot; alt=&#38;quot;Argentina on the brink&#38;quot; title=&#38;quot;Argentina on the brink&#38;quot; /&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;The image source is empty for the entry-thumbnails images. Did it ever work? Have you changed something recently?
&#60;/p&#62;</description>
</item>
<item>
<title>extratime on "PhpThumb utterly broken!"</title>
<link>http://wordpress.org/support/topic/314897#post-1225237</link>
<pubDate>Sat, 26 Sep 2009 00:15:02 +0000</pubDate>
<dc:creator>extratime</dc:creator>
<guid isPermaLink="false">1225237@http://wordpress.org/support/</guid>
<description>&#60;p&#62;The link works but no thumbs are ever generated... could anyone help me with the coding?
&#60;/p&#62;</description>
</item>
<item>
<title>extratime on "PhpThumb utterly broken!"</title>
<link>http://wordpress.org/support/topic/314897#post-1225072</link>
<pubDate>Fri, 25 Sep 2009 21:40:52 +0000</pubDate>
<dc:creator>extratime</dc:creator>
<guid isPermaLink="false">1225072@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi guys,&#60;/p&#62;
&#60;p&#62;Both my old theme and the new one I have just implemented do not display the thumbs on the front page... it seems a problem with Phpmythumb but I'm not so literate and have been unable to fix the problem despite hours of trying!&#60;/p&#62;
&#60;p&#62;The front page is nothing without pictures! Please help if you are able... &#60;a href=&#34;http://www.footballingworld.com&#34; rel=&#34;nofollow&#34;&#62;http://www.footballingworld.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Matt
&#60;/p&#62;</description>
</item>
<item>
<title>duffbeer on "Loop in sidebar - duplicate post links"</title>
<link>http://wordpress.org/support/topic/314737#post-1224479</link>
<pubDate>Fri, 25 Sep 2009 12:50:31 +0000</pubDate>
<dc:creator>duffbeer</dc:creator>
<guid isPermaLink="false">1224479@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Thanks in Advance, I have been pulling my hair out over this...&#60;/p&#62;
&#60;p&#62;I have some code in the sidebar that pulls out recent posts, works fine in IE in all situations.&#60;br /&#62;
However, in Firefox it only works consistantly when viewing from the main blog page, and from a &#34;page&#34;. When viewing a single post sometimes its ok, other times the tag is closed prematurely, instead of getting the image, title and text all together, I get an image, then title, and then text. &#60;/p&#62;
&#60;p&#62;This doesnt happen when the query returns a single post.&#60;/p&#62;
&#60;p&#62;also, If remove the text, it works fine all the time. If I leave the text and remove the image, it sometimes goes a bit weird. &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php $the_query_recent = new WP_Query(&#38;#39;showposts=3&#38;amp;offset=5&#38;#39;);
					while ($the_query_recent-&#38;gt;have_posts()) : $the_query_recent-&#38;gt;the_post();?&#38;gt;

		&#38;lt;a class=&#38;quot;feature&#38;quot; href=&#38;quot;&#38;lt;?php the_permalink(); ?&#38;gt;&#38;quot; rel=&#38;quot;bookmark&#38;quot; title=&#38;quot;&#38;lt;?php the_title(); ?&#38;gt;&#38;quot;&#38;gt;
		&#38;lt;img class=&#38;quot;feature_img&#38;quot; src=&#38;quot;&#38;lt;?php echo get_option(&#38;#39;home&#38;#39;); ?&#38;gt;/wp-content/uploads/&#38;lt;?php echo get_post_meta($post-&#38;gt;ID, &#38;quot;thumb_home_img&#38;quot;, $single = true); ?&#38;gt;&#38;quot; alt=&#38;quot;&#38;lt;?php the_title(); ?&#38;gt;&#38;quot; /&#38;gt;
		&#38;lt;div class=&#38;quot;feature_title&#38;quot;&#38;gt;&#38;lt;?php echo get_post_meta($post-&#38;gt;ID, &#38;quot;featured_title&#38;quot;, $single = true); ?&#38;gt;&#38;lt;/div&#38;gt;
		&#38;lt;div class=&#38;quot;feature_text&#38;quot;&#38;gt;&#38;lt;?php echo get_post_meta($post-&#38;gt;ID, &#38;quot;featured_text&#38;quot;, $single = true); ?&#38;gt;&#38;lt;/div&#38;gt;
		&#38;lt;/a&#38;gt;

	&#38;lt;?php endwhile; ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>kjersti_mac on "Nextgen gallery"</title>
<link>http://wordpress.org/support/topic/310149#post-1208670</link>
<pubDate>Fri, 11 Sep 2009 20:25:10 +0000</pubDate>
<dc:creator>kjersti_mac</dc:creator>
<guid isPermaLink="false">1208670@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi :)&#60;br /&#62;
I am completely new to wordpress, and I´ve just installed Nextgen gallery. It displays my pictures in a really nice way, but I would like to have categories with thumbs, like when you click the album, the dropdown shows f.ex 3 categories like 2007, 2008, 2009, and when you choose 2009, you get sent to a page with thumbs like January, February etc. Then, when you click the thumb you want, you see all the pictures in the gallery...&#60;br /&#62;
I have tried to categorize in the Album option, but these Albums I create doesn`t show up at all...&#60;br /&#62;
Help will be greatly appreciated :D&#60;/p&#62;
&#60;p&#62;Kjersti
&#60;/p&#62;</description>
</item>
<item>
<title>yosit on "Thumb showing in post not wanted"</title>
<link>http://wordpress.org/support/topic/283051#post-1160584</link>
<pubDate>Sun, 02 Aug 2009 21:57:22 +0000</pubDate>
<dc:creator>yosit</dc:creator>
<guid isPermaLink="false">1160584@http://wordpress.org/support/</guid>
<description>&#60;p&#62;this refers to version 1.3.5&#60;br /&#62;
a better fix would be to change line 95 on filters.php to:&#60;br /&#62;
&#60;code&#62;if (arras_get_option(&#38;#39;single_thumbs&#38;#39;) &#38;amp;&#38;amp; $lead ) {&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;instead of&#60;/p&#62;
&#60;p&#62;&#60;code&#62;if ($lead) {&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;this will make the code take into account the settings you specify on the theme options
&#60;/p&#62;</description>
</item>
<item>
<title>marcosx on "[Post thumb revisited] Thumb images from somewhere?"</title>
<link>http://wordpress.org/support/topic/292752#post-1148015</link>
<pubDate>Wed, 22 Jul 2009 22:29:38 +0000</pubDate>
<dc:creator>marcosx</dc:creator>
<guid isPermaLink="false">1148015@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Sometimes the thumbs images are not the first image from post or even there are from youtube (if there is one in post, and there is image before that), or they are from &#34;nowhere&#34;. This problem mostly appears in post that uses similar titles (ex. someting part 1, something part 2), but not only. I have tried to change plugin code but no result. I have no idea what to do :(.
&#60;/p&#62;</description>
</item>
<item>
<title>mercime on "Old Thumb size"</title>
<link>http://wordpress.org/support/topic/291459#post-1144065</link>
<pubDate>Sun, 19 Jul 2009 21:35:12 +0000</pubDate>
<dc:creator>mercime</dc:creator>
<guid isPermaLink="false">1144065@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Cheers.
&#60;/p&#62;</description>
</item>
<item>
<title>esmi on "Old Thumb size"</title>
<link>http://wordpress.org/support/topic/291459#post-1143989</link>
<pubDate>Sun, 19 Jul 2009 20:10:52 +0000</pubDate>
<dc:creator>esmi</dc:creator>
<guid isPermaLink="false">1143989@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I thought I'd heard of one. Thanks for that. Duly bookmarked.
&#60;/p&#62;</description>
</item>
<item>
<title>mercime on "Old Thumb size"</title>
<link>http://wordpress.org/support/topic/291459#post-1143961</link>
<pubDate>Sun, 19 Jul 2009 19:41:08 +0000</pubDate>
<dc:creator>mercime</dc:creator>
<guid isPermaLink="false">1143961@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Actually, there is a plugin by Viper007Bond which does that exactly and I have used it for a project. Of course, always good practice to backup database and uploads folder first just in case ....&#60;br /&#62;
&#60;a href=&#34;http://www.viper007bond.com/wordpress-plugins/regenerate-thumbnails/&#34; rel=&#34;nofollow&#34;&#62;http://www.viper007bond.com/wordpress-plugins/regenerate-thumbnails/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>esmi on "Old Thumb size"</title>
<link>http://wordpress.org/support/topic/291459#post-1143929</link>
<pubDate>Sun, 19 Jul 2009 19:04:57 +0000</pubDate>
<dc:creator>esmi</dc:creator>
<guid isPermaLink="false">1143929@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Unless you can find a plugin that will re-scale all previously uploaded images for you, I'm afraid that you'll need to re-upload them all.
&#60;/p&#62;</description>
</item>
<item>
<title>SGr33n on "Old Thumb size"</title>
<link>http://wordpress.org/support/topic/291459#post-1143678</link>
<pubDate>Sun, 19 Jul 2009 12:47:11 +0000</pubDate>
<dc:creator>SGr33n</dc:creator>
<guid isPermaLink="false">1143678@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;In Wordpress 2.8.1 I changed the default Thumb size.&#60;br /&#62;
I had a lot of pictures before doing this, but they still in the old size.&#60;/p&#62;
&#60;p&#62;Have I to reup every single picture in order to modify them to the new size?&#60;/p&#62;
&#60;p&#62;Thanks :)
&#60;/p&#62;</description>
</item>
<item>
<title>scribu on "[Plugin: Custom Field Images] Makes a linked post thumbnail?"</title>
<link>http://wordpress.org/support/topic/289016#post-1135216</link>
<pubDate>Sun, 12 Jul 2009 20:41:47 +0000</pubDate>
<dc:creator>scribu</dc:creator>
<guid isPermaLink="false">1135216@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I've replied &#60;a href=&#34;http://scribu.net/wordpress/custom-field-images/cfi-2-0.html&#34;&#62;here&#60;/a&#62;.
&#60;/p&#62;</description>
</item>
<item>
<title>kjetilgf on "[Plugin: Custom Field Images] Makes a linked post thumbnail?"</title>
<link>http://wordpress.org/support/topic/289016#post-1134782</link>
<pubDate>Sun, 12 Jul 2009 12:09:24 +0000</pubDate>
<dc:creator>kjetilgf</dc:creator>
<guid isPermaLink="false">1134782@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi&#60;br /&#62;
As I understand, one can insert a template tag into the loop to display a thumbnail generated from a (the first?) image in each post. Correct?&#60;br /&#62;
More precisely I'm looking for a plugin that (after inserting a tag in a template)&#60;br /&#62;
- generates a thumbnail from (preferably) the first image in the post&#60;br /&#62;
- makes the thumb clickable, to open the post (like &#60;a href=&#34;http://www.dolcevita.no/umbria/&#34;&#62;here&#60;/a&#62;)&#60;br /&#62;
- the post image thumbnail is generated by making a thumbnail on the fly, pulled from WP's own thumbnails - or is a minimized display of the post image (?)&#60;br /&#62;
Great if you could clear this up - maybe also make a demo. It would be really useful.&#60;br /&#62;
Thanks,&#60;br /&#62;
Kjetil
&#60;/p&#62;</description>
</item>
<item>
<title>abovocipher on "[Plugin: NextGEN Gallery] Thumbnails stretch Image when forced to 100x100"</title>
<link>http://wordpress.org/support/topic/287508#post-1129592</link>
<pubDate>Tue, 07 Jul 2009 21:49:30 +0000</pubDate>
<dc:creator>abovocipher</dc:creator>
<guid isPermaLink="false">1129592@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I ended up changing the maximum values to 75x 75 and then checking the box to crop to the 75x 75 and that worked. fyi for any one else with a similar problem.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
