<?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>Support Forum - Tag: image sizes - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/image-sizes</link>
		<description>Support Forum - Tag: image sizes - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Tue, 21 May 2013 20:59:40 +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.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/tags/image-sizes" rel="self" type="application/rss+xml" />

		<item>
			<title>Devin on "create custom column sizes"</title>
			<link>http://www.kriesi.at/support/topic/create-custom-column-sizes#post-92319</link>
			<pubDate>Fri, 18 Jan 2013 19:55:21 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">92319@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad we could help :)&#60;/p&#62;
&#60;p&#62;Let us know if you have any other questions or issues.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>chembro303 on "create custom column sizes"</title>
			<link>http://www.kriesi.at/support/topic/create-custom-column-sizes#post-92192</link>
			<pubDate>Fri, 18 Jan 2013 04:47:06 +0000</pubDate>
			<dc:creator>chembro303</dc:creator>
			<guid isPermaLink="false">92192@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Aha! Thanks! I *almost* had it... my ignorance of how to code that PHP 'switch' was my downfall. I also edited functions.php to add my new image size.&#60;/p&#62;
&#60;p&#62;Thank you so much for the clear instructions! :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "create custom column sizes"</title>
			<link>http://www.kriesi.at/support/topic/create-custom-column-sizes#post-91958</link>
			<pubDate>Thu, 17 Jan 2013 01:06:48 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">91958@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey chembro303,&#60;/p&#62;
&#60;p&#62;The grid is a 12 column grid so six would be possible in this instance.&#60;/p&#62;
&#60;p&#62;Open includes&#38;gt;admin&#38;gt;register-admin-options.php and look for:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;array(
								&#38;quot;slug&#38;quot;	=&#38;gt; &#38;quot;portfolio&#38;quot;,
								&#38;quot;name&#38;quot; 	=&#38;gt; &#38;quot;Portfolio Columns&#38;quot;,
								&#38;quot;desc&#38;quot; 	=&#38;gt; &#38;quot;How many columns should be displayed?&#38;quot;,
								&#38;quot;id&#38;quot; 	=&#38;gt; &#38;quot;portfolio_columns&#38;quot;,
								&#38;quot;type&#38;quot; 	=&#38;gt; &#38;quot;select&#38;quot;,
								&#38;quot;std&#38;quot; 	=&#38;gt; &#38;quot;4&#38;quot;,
								&#38;quot;subtype&#38;quot; =&#38;gt; array(&#38;#39;1&#38;#39;=&#38;gt;&#38;#39;1&#38;#39;,&#38;#39;2&#38;#39;=&#38;gt;&#38;#39;2&#38;#39;,&#38;#39;3&#38;#39;=&#38;gt;&#38;#39;3&#38;#39;,&#38;#39;4&#38;#39;=&#38;gt;&#38;#39;4&#38;#39;)),&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;add a 6 option to that with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;array(
								&#38;quot;slug&#38;quot;	=&#38;gt; &#38;quot;portfolio&#38;quot;,
								&#38;quot;name&#38;quot; 	=&#38;gt; &#38;quot;Portfolio Columns&#38;quot;,
								&#38;quot;desc&#38;quot; 	=&#38;gt; &#38;quot;How many columns should be displayed?&#38;quot;,
								&#38;quot;id&#38;quot; 	=&#38;gt; &#38;quot;portfolio_columns&#38;quot;,
								&#38;quot;type&#38;quot; 	=&#38;gt; &#38;quot;select&#38;quot;,
								&#38;quot;std&#38;quot; 	=&#38;gt; &#38;quot;4&#38;quot;,
								&#38;quot;subtype&#38;quot; =&#38;gt; array(&#38;#39;1&#38;#39;=&#38;gt;&#38;#39;1&#38;#39;,&#38;#39;2&#38;#39;=&#38;gt;&#38;#39;2&#38;#39;,&#38;#39;3&#38;#39;=&#38;gt;&#38;#39;3&#38;#39;,&#38;#39;4&#38;#39;=&#38;gt;&#38;#39;4&#38;#39;,&#38;#39;6&#38;#39;=&#38;gt;&#38;#39;6&#38;#39;)),&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Then in includes&#38;gt;loop-portfolio.php look for:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;switch($avia_config[&#38;#39;portfolio_columns&#38;#39;])
	{
		case 1: $grid = &#38;#39;grid12&#38;#39;; $image_size = &#38;#39;featured&#38;#39;; break;
		case 2: $grid = &#38;#39;grid6&#38;#39;;  $image_size = &#38;#39;portfolio2&#38;#39;; break;
		case 3: $grid = &#38;#39;grid4&#38;#39;;  $image_size = &#38;#39;portfolio3&#38;#39;; break;
		case 4: $grid = &#38;#39;grid3&#38;#39;;  $image_size = &#38;#39;portfolio&#38;#39;; $showcaption = false; break;
	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;add an option for the 6 option:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;switch($avia_config[&#38;#39;portfolio_columns&#38;#39;])
	{
		case 1: $grid = &#38;#39;grid12&#38;#39;; $image_size = &#38;#39;featured&#38;#39;; break;
		case 2: $grid = &#38;#39;grid6&#38;#39;;  $image_size = &#38;#39;portfolio2&#38;#39;; break;
		case 3: $grid = &#38;#39;grid4&#38;#39;;  $image_size = &#38;#39;portfolio3&#38;#39;; break;
		case 4: $grid = &#38;#39;grid3&#38;#39;;  $image_size = &#38;#39;portfolio&#38;#39;; $showcaption = false; break;
		case 6: $grid = &#38;#39;grid2&#38;#39;;  $image_size = &#38;#39;portfolio&#38;#39;; $showcaption = false; break;
	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>chembro303 on "create custom column sizes"</title>
			<link>http://www.kriesi.at/support/topic/create-custom-column-sizes#post-91837</link>
			<pubDate>Wed, 16 Jan 2013 11:02:58 +0000</pubDate>
			<dc:creator>chembro303</dc:creator>
			<guid isPermaLink="false">91837@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I love this theme (Velvet) - thanks. One thing I want to do is have a portfolio page with rows of 6 columns (head shots of people) in addition to the normal options (1,2,3,4). I tried to modify a few of the underpinnings of the theme but I just couldn't get it to work.&#60;/p&#62;
&#60;p&#62;While full instructions would be much appreciated :) at a minimum can you point me to the files I would need to modify and the basic gist of what I need to do in order to add a &#34;6&#34; option in the portfolio columns configuration selector that will display 6 portfolio items across using a new custom image size (approx. 130x170 in this case...)? I was able to add the &#34;6&#34; item as a new option in the select box but it didn't seem to 'do' anything when I select it. I must be missing something.&#60;/p&#62;
&#60;p&#62;Thank you!!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Changing size of of portfolio image on portfolio item page"</title>
			<link>http://www.kriesi.at/support/topic/changing-size-of-of-portfolio-image-on-portfolio-item-page#post-80466</link>
			<pubDate>Sat, 20 Oct 2012 08:04:50 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">80466@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You can change the thumbnail sizes in functions.php. Open up the file and search for following code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;fullsize&#38;#39;] 		 	= array(&#38;#39;width&#38;#39;=&#38;gt;930, &#38;#39;height&#38;#39;=&#38;gt;930, &#38;#39;crop&#38;#39;=&#38;gt;false);		// big images for lightbox and portfolio single entries&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Decrease the height value and if this doesn't help activate the &#34;crop&#34; feature by replacing &#60;em&#62;false&#60;/em&#62; with &#60;em&#62;true&#60;/em&#62;. You need to regenerate the thumbnails with: &#60;a href=&#34;http://wordpress.org/extend/plugins/regenerate-thumbnails/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/regenerate-thumbnails/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>stirlingstoneworks on "Changing size of of portfolio image on portfolio item page"</title>
			<link>http://www.kriesi.at/support/topic/changing-size-of-of-portfolio-image-on-portfolio-item-page#post-80446</link>
			<pubDate>Sat, 20 Oct 2012 05:37:50 +0000</pubDate>
			<dc:creator>stirlingstoneworks</dc:creator>
			<guid isPermaLink="false">80446@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Most of the pictures i'm attempting to use on the website are portrait rather than landscape.  So, when the image is stretched to fill the portolio items page, it's too tall so the main text gets pushed down too far.&#60;/p&#62;
&#60;p&#62;How does one control the size of a picture on the main item page? Should i handle this in CSS or in the php code and if so, where.&#60;/p&#62;
&#60;p&#62;See here for an example:  &#60;a href=&#34;http://stirlingstoneworks.com/portfolio-item/family-crests-corporate-icons/&#34; rel=&#34;nofollow&#34;&#62;http://stirlingstoneworks.com/portfolio-item/family-crests-corporate-icons/&#60;/a&#62;  &#60;/p&#62;
&#60;p&#62;Also, clicking on the image gives me a smaller lightbox not a larger image.&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mya on "change image size of products in columns"</title>
			<link>http://www.kriesi.at/support/topic/change-image-size-of-products-in-columns#post-59715</link>
			<pubDate>Mon, 11 Jun 2012 18:32:09 +0000</pubDate>
			<dc:creator>Mya</dc:creator>
			<guid isPermaLink="false">59715@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi jklupfel,&#60;/p&#62;
&#60;p&#62;Given the size of the boxes on the left column I think you're best option is to hide the icons. To do that, add this to your custom.css or Quick CSS.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#top .one_half div .thumbnail_container .add_to_cart_button,
#top .one_half div .thumbnail_container .show_details_button {
    background-image: none !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;If that isn't acceptable then you could resize the images (located in the theme's images folder) then re-upload to via FTP.&#60;/p&#62;
&#60;p&#62;Once you've done that, add this to your custom.css or Quick CSS:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#top div .thumbnail_container .add_to_cart_button {
    background: url(&#38;quot;images/icons-shop-cart-new.png&#38;quot;) no-repeat scroll 10px center rgba(0, 0, 0, 0.7);
}

#top div .thumbnail_container .show_details_button {
    background: url(&#38;quot;images/icons-shop-details-new.png&#38;quot;) no-repeat scroll 10px center rgba(0, 0, 0, 0.7);
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Mya
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jklupfel on "change image size of products in columns"</title>
			<link>http://www.kriesi.at/support/topic/change-image-size-of-products-in-columns#post-59045</link>
			<pubDate>Wed, 06 Jun 2012 09:52:56 +0000</pubDate>
			<dc:creator>jklupfel</dc:creator>
			<guid isPermaLink="false">59045@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello &#60;/p&#62;
&#60;p&#62;I am trying to set up a page with 2 colums plus sidebar,&#60;br /&#62;
the left column should have my products in it, the right colum text&#60;br /&#62;
now when I add the shortcode for my latest products, i changes the size of the product image, not a huge problem, but when you hover over the product the button text and image overlap and become unreadable. &#60;/p&#62;
&#60;p&#62;I tried to change the shortcode to only display 2 or 3 images per line, but the image sizes stayed the same.&#60;/p&#62;
&#60;p&#62;Here's a link to my page &#60;a href=&#34;http://www.young-passion.de/&#34; rel=&#34;nofollow&#34;&#62;http://www.young-passion.de/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Any suggestions how to fix this?&#60;/p&#62;
&#60;p&#62;Thanks for any help!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "image sizes are not being adjusted"</title>
			<link>http://www.kriesi.at/support/topic/image-sizes-are-not-being-adjusted#post-25319</link>
			<pubDate>Fri, 19 Aug 2011 20:58:26 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">25319@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that I could help you :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hteamspy on "image sizes are not being adjusted"</title>
			<link>http://www.kriesi.at/support/topic/image-sizes-are-not-being-adjusted#post-25277</link>
			<pubDate>Fri, 19 Aug 2011 09:11:31 +0000</pubDate>
			<dc:creator>hteamspy</dc:creator>
			<guid isPermaLink="false">25277@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you for the quick reply. All fixed!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "image sizes are not being adjusted"</title>
			<link>http://www.kriesi.at/support/topic/image-sizes-are-not-being-adjusted#post-25273</link>
			<pubDate>Fri, 19 Aug 2011 08:54:49 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">25273@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
If wordpress doesn't resize any thumbnails the gd-image libary is not installed on your server (or your hoster deactivated or restricted the usage/access to this libary). Please ask your hoster to activate/install the gd image libary and afterwards regenerate the thumbnails with: &#60;a href=&#34;http://wordpress.org/extend/plugins/regenerate-thumbnails/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/regenerate-thumbnails/&#60;/a&#62; again. An interesting article about this issue can be found here: &#60;a href=&#34;http://www.chiaocheng.com/2009/06/wordpress-thumbnail-generation-disabled/&#34; rel=&#34;nofollow&#34;&#62;http://www.chiaocheng.com/2009/06/wordpress-thumbnail-generation-disabled/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hteamspy on "image sizes are not being adjusted"</title>
			<link>http://www.kriesi.at/support/topic/image-sizes-are-not-being-adjusted#post-25271</link>
			<pubDate>Fri, 19 Aug 2011 08:41:07 +0000</pubDate>
			<dc:creator>hteamspy</dc:creator>
			<guid isPermaLink="false">25271@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi, &#60;/p&#62;
&#60;p&#62;I'm having problems with images as well. They are not being resized automatically (thumbnails below the slider on the homepage and image on the post page). It looks like it's the same problem that Alexey experienced. Could you please tell me what the solution was so I can fix it?&#60;/p&#62;
&#60;p&#62;My website is &#60;a href=&#34;http://blog.happydaddymagazine.com/&#34; rel=&#34;nofollow&#34;&#62;http://blog.happydaddymagazine.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thank you&#60;/p&#62;
&#60;p&#62;Nathalie
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "image sizes are not being adjusted"</title>
			<link>http://www.kriesi.at/support/topic/image-sizes-are-not-being-adjusted#post-25138</link>
			<pubDate>Thu, 18 Aug 2011 10:55:51 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">25138@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that I could help you :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>alexeythemes on "image sizes are not being adjusted"</title>
			<link>http://www.kriesi.at/support/topic/image-sizes-are-not-being-adjusted#post-25135</link>
			<pubDate>Thu, 18 Aug 2011 10:32:22 +0000</pubDate>
			<dc:creator>alexeythemes</dc:creator>
			<guid isPermaLink="false">25135@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you very much -- done &#38;amp; problem solved. Quick &#38;amp; easy&#60;/p&#62;
&#60;p&#62;Cheers
&#60;/p&#62;</description>
		</item>
		<item>
			<title>alexeythemes on "image sizes are not being adjusted"</title>
			<link>http://www.kriesi.at/support/topic/image-sizes-are-not-being-adjusted#post-25133</link>
			<pubDate>Thu, 18 Aug 2011 09:55:59 +0000</pubDate>
			<dc:creator>alexeythemes</dc:creator>
			<guid isPermaLink="false">25133@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;done,&#60;/p&#62;
&#60;p&#62;thank you
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "image sizes are not being adjusted"</title>
			<link>http://www.kriesi.at/support/topic/image-sizes-are-not-being-adjusted#post-25131</link>
			<pubDate>Thu, 18 Aug 2011 09:35:18 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">25131@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Please create me an admin account and send me the login data to: &#60;a href=&#34;mailto:kriesi2000-dude@yahoo.com&#34;&#62;kriesi2000-dude@yahoo.com&#60;/a&#62; - I'll look into it.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>alexeythemes on "image sizes are not being adjusted"</title>
			<link>http://www.kriesi.at/support/topic/image-sizes-are-not-being-adjusted#post-25130</link>
			<pubDate>Thu, 18 Aug 2011 08:45:55 +0000</pubDate>
			<dc:creator>alexeythemes</dc:creator>
			<guid isPermaLink="false">25130@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;&#60;a href=&#34;http://petersburg-pass.com/&#34; rel=&#34;nofollow&#34;&#62;http://petersburg-pass.com/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "image sizes are not being adjusted"</title>
			<link>http://www.kriesi.at/support/topic/image-sizes-are-not-being-adjusted#post-25114</link>
			<pubDate>Thu, 18 Aug 2011 06:53:10 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">25114@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Can you post a link to your website please. I need to investigate this first hand then.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>alexeythemes on "image sizes are not being adjusted"</title>
			<link>http://www.kriesi.at/support/topic/image-sizes-are-not-being-adjusted#post-25092</link>
			<pubDate>Wed, 17 Aug 2011 16:03:38 +0000</pubDate>
			<dc:creator>alexeythemes</dc:creator>
			<guid isPermaLink="false">25092@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I also tried to rebuild the thumbnails with AJAX Thumbnail Rebuild and nothing changed. Still wrong
&#60;/p&#62;</description>
		</item>
		<item>
			<title>alexeythemes on "image sizes are not being adjusted"</title>
			<link>http://www.kriesi.at/support/topic/image-sizes-are-not-being-adjusted#post-25089</link>
			<pubDate>Wed, 17 Aug 2011 15:31:40 +0000</pubDate>
			<dc:creator>alexeythemes</dc:creator>
			<guid isPermaLink="false">25089@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you for quick reply.&#60;/p&#62;
&#60;p&#62;The images are being uploaded after. And are slightly bigger than required.&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "image sizes are not being adjusted"</title>
			<link>http://www.kriesi.at/support/topic/image-sizes-are-not-being-adjusted#post-25087</link>
			<pubDate>Wed, 17 Aug 2011 15:15:17 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">25087@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
if you uploaded the image(s) before the theme activation you need to regenerate the thumbnails by using this plugin: &#60;a href=&#34;http://wordpress.org/extend/plugins/regenerate-thumbnails/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/regenerate-thumbnails/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Please be aware that the thumbnail generation function only kicks in if the images are bigger than the required image/thumb size. If the image dimensions are equal or smaller than the required dimensions the image function won't resize the image.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>alexeythemes on "image sizes are not being adjusted"</title>
			<link>http://www.kriesi.at/support/topic/image-sizes-are-not-being-adjusted#post-25084</link>
			<pubDate>Wed, 17 Aug 2011 14:59:51 +0000</pubDate>
			<dc:creator>alexeythemes</dc:creator>
			<guid isPermaLink="false">25084@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;thanks much for the theme.&#60;/p&#62;
&#60;p&#62;I'm experiencing the following problem:&#60;br /&#62;
When I upload images they seem not being resized. This breaks the homepage layout and slider looks weird.&#60;br /&#62;
Here is screenshot: &#60;a href=&#34;http://www.lexla.ru/uploads/screen.png&#34; rel=&#34;nofollow&#34;&#62;http://www.lexla.ru/uploads/screen.png&#60;/a&#62;&#60;br /&#62;
I use WP 3.2.1&#60;/p&#62;
&#60;p&#62;Please help. Thanks in advance&#60;/p&#62;
&#60;p&#62;Alexey
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kaylesimon on "Different thumbnailsize on index.php / archive.php then single.php"</title>
			<link>http://www.kriesi.at/support/topic/different-thumbnailsize-on-indexphp-archivephp-then-singlephp#post-5720</link>
			<pubDate>Thu, 30 Sep 2010 13:13:41 +0000</pubDate>
			<dc:creator>kaylesimon</dc:creator>
			<guid isPermaLink="false">5720@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I had to reinstall index.php and now the sidebars are back where they belong. I DO wish I could make the thumbnails larger, though...gonna have to figure out what else needs to change to make room for them.&#60;/p&#62;
&#60;p&#62;It really is a beautiful theme; I really do want to customize it, though, and hope the dude will consider the request to make that doable through outside custom files.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kaylesimon on "Different thumbnailsize on index.php / archive.php then single.php"</title>
			<link>http://www.kriesi.at/support/topic/different-thumbnailsize-on-indexphp-archivephp-then-singlephp#post-5718</link>
			<pubDate>Thu, 30 Sep 2010 13:06:24 +0000</pubDate>
			<dc:creator>kaylesimon</dc:creator>
			<guid isPermaLink="false">5718@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I tried changing the 60 to 70 to make the thumbnails larger and immediately my sidebars moved themselves down under the content area...it's as though they didn't have room to be there anymore for some reason. Perhaps because there was a thumbnail in one of them due to the news widget. So I switched the code back to 60, but the change appears to be permanent. Even uploading the original functions.php file didn't change anything.&#60;/p&#62;
&#60;p&#62;The only way I've found to get the sidebars back up to the right is to delete all thumbnails from the content section. I can't for the life of me figure out what happened to cause this. The site is at &#60;a href=&#34;http://www.realfreshblog.com&#34; rel=&#34;nofollow&#34;&#62;http://www.realfreshblog.com&#60;/a&#62;; perhaps someone out there can assist. Or maybe I do a conmplete reinstall and start the whole thing over again.&#60;/p&#62;
&#60;p&#62;I do wish there was a custom.css file and a customfunctions.php file, like with the Thesis theme, that would allow me to make changes without affecting the original files in this theme.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Different thumbnailsize on index.php / archive.php then single.php"</title>
			<link>http://www.kriesi.at/support/topic/different-thumbnailsize-on-indexphp-archivephp-then-singlephp#post-5500</link>
			<pubDate>Sun, 26 Sep 2010 12:22:33 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">5500@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;In functions.php you can define which post thumbnail size your images should have. You need to change the dimensions of these two thumbnail types:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$k_option[&#38;#39;custom&#38;#39;][&#38;#39;imgSize&#38;#39;][&#38;#39;S&#38;#39;] = array(&#38;#39;width&#38;#39;=&#38;gt;60, &#38;#39;height&#38;#39;=&#38;gt;60);			// small preview pics for half sized posts and sidebar news
$k_option[&#38;#39;custom&#38;#39;][&#38;#39;imgSize&#38;#39;][&#38;#39;M&#38;#39;] = array(&#38;#39;width&#38;#39;=&#38;gt;180, &#38;#39;height&#38;#39;=&#38;gt;180);		// big preview pic for full sized posts&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The Dude
&#60;/p&#62;</description>
		</item>
		<item>
			<title>arwengrim on "Different thumbnailsize on index.php / archive.php then single.php"</title>
			<link>http://www.kriesi.at/support/topic/different-thumbnailsize-on-indexphp-archivephp-then-singlephp#post-5496</link>
			<pubDate>Sun, 26 Sep 2010 08:33:15 +0000</pubDate>
			<dc:creator>arwengrim</dc:creator>
			<guid isPermaLink="false">5496@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi !&#60;/p&#62;
&#60;p&#62;First of, lovely theme, its really really good, and is well thought out.&#60;/p&#62;
&#60;p&#62;That said, im looking to try and acchive two different sizes of images.&#60;br /&#62;
I would love to have the images around 193x193 in the category view and 250x250 in single view.&#60;/p&#62;
&#60;p&#62;Any thoughts on how to acchive this ?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
