<?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 resize - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/image-resize</link>
		<description>Support Forum - Tag: Image resize - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Sun, 19 May 2013 23:02:58 +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-resize" rel="self" type="application/rss+xml" />

		<item>
			<title>Devin on "Image in Mega Menu not being resized in IE"</title>
			<link>http://www.kriesi.at/support/topic/image-in-mega-menu-not-being-resized-in-ie#post-101507</link>
			<pubDate>Fri, 15 Mar 2013 17:06:30 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">101507@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>anniet on "Image in Mega Menu not being resized in IE"</title>
			<link>http://www.kriesi.at/support/topic/image-in-mega-menu-not-being-resized-in-ie#post-101314</link>
			<pubDate>Thu, 14 Mar 2013 15:40:17 +0000</pubDate>
			<dc:creator>anniet</dc:creator>
			<guid isPermaLink="false">101314@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;HI Nick,&#60;br /&#62;
Thanks a lot !
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Image in Mega Menu not being resized in IE"</title>
			<link>http://www.kriesi.at/support/topic/image-in-mega-menu-not-being-resized-in-ie#post-101313</link>
			<pubDate>Thu, 14 Mar 2013 15:26:27 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">101313@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;HI,&#60;/p&#62;
&#60;p&#62;For your first problem. overflow:hidden; may be needed someplace, though I took a look in IE9/win7 and I don't see anything like what you describe &#60;a href=&#34;http://i.imgur.com/wvMyx1M.jpg&#34; rel=&#34;nofollow&#34;&#62;http://i.imgur.com/wvMyx1M.jpg&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;-----&#60;br /&#62;
shopping cart&#60;/p&#62;
&#60;p&#62;Please add the following css block to the bottom of the /css/custom.css file; OR to Quick CSS located in the admin area of Abundance &#38;gt; Theme Options &#38;gt; Styling ... the text area at the bottom of that page:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top .cart_dropdown {
display: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;the removal of the overlays over product item thumbnails will require you to find lines 350-358 in the /woocommerce-config/config.php file within the theme which look like&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;echo &#38;quot;&#38;lt;div class=&#38;#39;thumbnail_container&#38;#39;&#38;gt;&#38;quot;;
	echo &#38;quot;&#38;lt;div class=&#38;#39;thumbnail_container_inner&#38;#39;&#38;gt;&#38;quot;;
		echo get_the_post_thumbnail( get_the_ID(), &#38;#39;shop_catalog&#38;#39; );
		echo $link;
		echo &#38;quot;&#38;lt;a class=&#38;#39;button show_details_button $extraClass&#38;#39; href=&#38;#39;&#38;quot;.get_permalink($post-&#38;gt;ID).&#38;quot;&#38;#39;&#38;gt;&#38;quot;.__(&#38;#39;Show Details&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/a&#38;gt;&#38;quot;;
		if(!empty($rating)) echo &#38;quot;&#38;lt;span class=&#38;#39;rating_container&#38;#39;&#38;gt;&#38;quot;.$rating.&#38;quot;&#38;lt;/span&#38;gt;&#38;quot;;

		echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;
	echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and replace them with this&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;echo &#38;quot;&#38;lt;div class=&#38;#39;thumbnail_container&#38;#39;&#38;gt;&#38;quot;;
	echo &#38;quot;&#38;lt;div class=&#38;#39;thumbnail_container_inner&#38;#39;&#38;gt;&#38;quot;;

		echo &#38;quot;&#38;lt;a class=&#38;#39;btnsb $extraClass&#38;#39; href=&#38;#39;&#38;quot;.get_permalink($post-&#38;gt;ID).&#38;quot;&#38;#39;&#38;gt;&#38;quot;.get_the_post_thumbnail( get_the_ID(), &#38;#39;shop_catalog&#38;#39; ).&#38;quot;&#38;lt;/a&#38;gt;&#38;quot;;
		if(!empty($rating)) echo &#38;quot;&#38;lt;span class=&#38;#39;rating_container&#38;#39;&#38;gt;&#38;quot;.$rating.&#38;quot;&#38;lt;/span&#38;gt;&#38;quot;;

		echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;
	echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gpogioli on "Image in Mega Menu not being resized in IE"</title>
			<link>http://www.kriesi.at/support/topic/image-in-mega-menu-not-being-resized-in-ie#post-101031</link>
			<pubDate>Wed, 13 Mar 2013 06:53:29 +0000</pubDate>
			<dc:creator>gpogioli</dc:creator>
			<guid isPermaLink="false">101031@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi guys,&#60;/p&#62;
&#60;p&#62;I am having an issue where an image that I have included in one of the columns of my mega menu is not being contained within the width of the column but is instead expanded to full resolution (but this is only happening in the IE browser). Obviously this is a CSS issue with IE but not sure how to target this menu item in order to keep the image from overrunning the whole page. &#60;a href=&#34;http://www.hotelsptac.com&#34; rel=&#34;nofollow&#34;&#62;http://www.hotelsptac.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Also, my client doesn't want the shopping cart function of woocommerce (I am only using it for the product gallery aspect), and I would like to know how to eliminate the shopping cart icon in the upper right corner of the Abundance theme, as well as the add to cart function that appears when hovering over a product thumbnail?&#60;/p&#62;
&#60;p&#62;Thanks in advance!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Image resize bug in IE and FF"</title>
			<link>http://www.kriesi.at/support/topic/image-resize-bug-in-ie-and-ff#post-97824</link>
			<pubDate>Thu, 21 Feb 2013 14:18:14 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">97824@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yep, now that we've finally found the root of it :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>halasyt on "Image resize bug in IE and FF"</title>
			<link>http://www.kriesi.at/support/topic/image-resize-bug-in-ie-and-ff#post-97709</link>
			<pubDate>Wed, 20 Feb 2013 19:12:26 +0000</pubDate>
			<dc:creator>halasyt</dc:creator>
			<guid isPermaLink="false">97709@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Great, this one worked, thanks for the support!&#60;br /&#62;
Will you add this to the next update, so I don't have to modify the file with each update?&#60;br /&#62;
Best,&#60;br /&#62;
  Tom
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Image resize bug in IE and FF"</title>
			<link>http://www.kriesi.at/support/topic/image-resize-bug-in-ie-and-ff#post-97417</link>
			<pubDate>Tue, 19 Feb 2013 13:24:54 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">97417@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Okay, this should be the final change. You'll need to edit one of the theme files via FTP however. Open js&#38;gt;avia.js in the theme files and then search for this line:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if(!a.css(&#38;#39;position&#38;#39;) &#124;&#124; a.css(&#38;#39;position&#38;#39;) == &#38;#39;static&#38;#39;) { a.css({position:&#38;#39;relative&#38;#39;, display:&#38;#39;inline-block&#38;#39;}); }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;It should be line 1137ish. Change it to:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if(!a.css(&#38;#39;position&#38;#39;) &#124;&#124; a.css(&#38;#39;position&#38;#39;) == &#38;#39;static&#38;#39;) { a.css({position:&#38;#39;relative&#38;#39;, display:&#38;#39;block&#38;#39;}); }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The issue is how IE and FF render max width inside an inline block (the link). You can remove the other css we've given as this should allow the proper max width to take effect.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>halasyt on "Image resize bug in IE and FF"</title>
			<link>http://www.kriesi.at/support/topic/image-resize-bug-in-ie-and-ff#post-97412</link>
			<pubDate>Tue, 19 Feb 2013 12:39:56 +0000</pubDate>
			<dc:creator>halasyt</dc:creator>
			<guid isPermaLink="false">97412@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;And I just noticed in IE8, images linked to themselves don't appear at all. It appears for a split second, than it disappears.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>halasyt on "Image resize bug in IE and FF"</title>
			<link>http://www.kriesi.at/support/topic/image-resize-bug-in-ie-and-ff#post-97389</link>
			<pubDate>Tue, 19 Feb 2013 07:55:57 +0000</pubDate>
			<dc:creator>halasyt</dc:creator>
			<guid isPermaLink="false">97389@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi, now the original problem is back in FF and IE:&#60;br /&#62;
&#60;a href=&#34;http://dev.theguitarlesson.com/2013/02/18/test/&#34; rel=&#34;nofollow&#34;&#62;http://dev.theguitarlesson.com/2013/02/18/test/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Image resize bug in IE and FF"</title>
			<link>http://www.kriesi.at/support/topic/image-resize-bug-in-ie-and-ff#post-97369</link>
			<pubDate>Tue, 19 Feb 2013 06:14:42 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">97369@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; Try following code instead:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.firefox img, .firefox a img{
  max-width: 98% !important;
}
.msie9 img, .msie9 a img{
  max-width: 98% !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>halasyt on "Image resize bug in IE and FF"</title>
			<link>http://www.kriesi.at/support/topic/image-resize-bug-in-ie-and-ff#post-97286</link>
			<pubDate>Mon, 18 Feb 2013 18:07:52 +0000</pubDate>
			<dc:creator>halasyt</dc:creator>
			<guid isPermaLink="false">97286@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ohoh, a new bug has emerged, if you insert a smaller image than the div width, it gets enlarged in IE and FF. I guess the result of the 98% width property setting: &#60;a href=&#34;http://dev.theguitarlesson.com/2013/02/18/test/&#34; rel=&#34;nofollow&#34;&#62;http://dev.theguitarlesson.com/2013/02/18/test/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>halasyt on "Image resize bug in IE and FF"</title>
			<link>http://www.kriesi.at/support/topic/image-resize-bug-in-ie-and-ff#post-97284</link>
			<pubDate>Mon, 18 Feb 2013 17:44:24 +0000</pubDate>
			<dc:creator>halasyt</dc:creator>
			<guid isPermaLink="false">97284@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Oh you're right, it was that missing bracket, thanks for your patience!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Image resize bug in IE and FF"</title>
			<link>http://www.kriesi.at/support/topic/image-resize-bug-in-ie-and-ff#post-97258</link>
			<pubDate>Mon, 18 Feb 2013 15:40:51 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">97258@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;We have no access to the demo site so we can't test fixes on them. &#60;/p&#62;
&#60;p&#62;On my test install, the css works for IE9 and now that the site isn't serving a cached version of itself the browser class is getting added into the html so the fix should take effect.&#60;/p&#62;
&#60;p&#62;It looks like you missed a bracket when adding in the css so only the firefox bit actually processing. What you have is:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.firefox img, .firefox a img{
  width: 98%;

.msie9 img, .msie9 a img{
  width: 98%;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;It should be:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.firefox img, .firefox a img{
  width: 98%;
}
.msie9 img, .msie9 a img{
  width: 98%;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;As it is, the fix will be going out in the next update.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>halasyt on "Image resize bug in IE and FF"</title>
			<link>http://www.kriesi.at/support/topic/image-resize-bug-in-ie-and-ff#post-97252</link>
			<pubDate>Mon, 18 Feb 2013 15:25:49 +0000</pubDate>
			<dc:creator>halasyt</dc:creator>
			<guid isPermaLink="false">97252@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;The caching plugin was inactive, but I just deleted it totally, yet it's still not working in IE.&#60;br /&#62;
But as I said, you don't need my installation for testing, this will happen on your own demo site as well.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Image resize bug in IE and FF"</title>
			<link>http://www.kriesi.at/support/topic/image-resize-bug-in-ie-and-ff#post-97229</link>
			<pubDate>Mon, 18 Feb 2013 13:50:48 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">97229@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I think the issue is that the caching plugin you have active is preventing the wordpress code that attaches browser classes to the page to work. So instead of giving the IE version a MSIE9 or MSIE class, its just showing unknown.&#60;/p&#62;
&#60;p&#62;Try deviating wp-super-cache and then giving the page a few refreshes and see if that works.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>halasyt on "Image resize bug in IE and FF"</title>
			<link>http://www.kriesi.at/support/topic/image-resize-bug-in-ie-and-ff#post-97225</link>
			<pubDate>Mon, 18 Feb 2013 13:27:36 +0000</pubDate>
			<dc:creator>halasyt</dc:creator>
			<guid isPermaLink="false">97225@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;You can reproduce it on any live install of Choices, but here is a page:&#60;br /&#62;
&#60;a href=&#34;http://dev.theguitarlesson.com/2013/02/18/test/&#34; rel=&#34;nofollow&#34;&#62;http://dev.theguitarlesson.com/2013/02/18/test/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I just noticed that in category overview, it doesn't happen:&#60;br /&#62;
&#60;a href=&#34;http://dev.theguitarlesson.com/category/uncategorized/&#34; rel=&#34;nofollow&#34;&#62;http://dev.theguitarlesson.com/category/uncategorized/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Image resize bug in IE and FF"</title>
			<link>http://www.kriesi.at/support/topic/image-resize-bug-in-ie-and-ff#post-97221</link>
			<pubDate>Mon, 18 Feb 2013 13:13:19 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">97221@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Tom,&#60;/p&#62;
&#60;p&#62;Can we take a look at the site live? Then see what needs to be adjusted with IE.\&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>halasyt on "Image resize bug in IE and FF"</title>
			<link>http://www.kriesi.at/support/topic/image-resize-bug-in-ie-and-ff#post-97131</link>
			<pubDate>Sun, 17 Feb 2013 18:20:57 +0000</pubDate>
			<dc:creator>halasyt</dc:creator>
			<guid isPermaLink="false">97131@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi, it worked for FF, but not IE.&#60;br /&#62;
I tried capitalizing as you suggested in the article as well, but no cigar...&#60;br /&#62;
Any other tips?&#60;br /&#62;
Thanks!&#60;br /&#62;
  Tom
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Image resize bug in IE and FF"</title>
			<link>http://www.kriesi.at/support/topic/image-resize-bug-in-ie-and-ff#post-96928</link>
			<pubDate>Fri, 15 Feb 2013 13:19:11 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">96928@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi halasyt,&#60;/p&#62;
&#60;p&#62;Try the css I posted here: &#60;a href=&#34;http://www.kriesi.at/support/topic/picture-size-pictures-are-squeezed-on-some-systems#post-95836&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/picture-size-pictures-are-squeezed-on-some-systems#post-95836&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;If this needs to be added to Choices as well, we'll include it in the next update.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>halasyt on "Image resize bug in IE and FF"</title>
			<link>http://www.kriesi.at/support/topic/image-resize-bug-in-ie-and-ff#post-96919</link>
			<pubDate>Fri, 15 Feb 2013 12:36:24 +0000</pubDate>
			<dc:creator>halasyt</dc:creator>
			<guid isPermaLink="false">96919@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;The theme fails to resize images in IE and FF when you insert an image into a post and link it to itself (so that the gallery will take over and show it in a lightbox). You can reproduce this if you insert a wider image than the content area, and link it to itself.&#60;/p&#62;
&#60;p&#62;It works fine in Chrome, and also works if images aren't linked to themselves.&#60;/p&#62;
&#60;p&#62;Can you fix this please?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Image Resizing for HomePage Slider"</title>
			<link>http://www.kriesi.at/support/topic/image-resizing-for-homepage-slider#post-71490</link>
			<pubDate>Fri, 17 Aug 2012 03:38:40 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">71490@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;Yes, you need to regenerate or re-upload the images. Remove cache and reload the page.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>fxjunk on "Image Resizing for HomePage Slider"</title>
			<link>http://www.kriesi.at/support/topic/image-resizing-for-homepage-slider#post-71485</link>
			<pubDate>Fri, 17 Aug 2012 03:18:37 +0000</pubDate>
			<dc:creator>fxjunk</dc:creator>
			<guid isPermaLink="false">71485@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Ismael,&#60;/p&#62;
&#60;p&#62;I wanted the fullsize slider to display image size 950x450 so I tried changing the code under Theme functions.php :&#60;br /&#62;
$avia_config['imgSize']['featured'] 	= array('width'=&#38;gt;950, 'height'=&#38;gt;450);&#60;br /&#62;
// images for fullsize pages and fullsize slider&#60;/p&#62;
&#60;p&#62;However, it does not seems to work. Am I supposed to regenerate thumb-nail image or whatever? Does not seems logical to regenerate thumbnail image since I am using the full-size image.and not the thumbnail image.&#60;/p&#62;
&#60;p&#62;Best regards
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Image Resizing for HomePage Slider"</title>
			<link>http://www.kriesi.at/support/topic/image-resizing-for-homepage-slider#post-71329</link>
			<pubDate>Thu, 16 Aug 2012 06:27:18 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">71329@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi fxjunk,&#60;/p&#62;
&#60;p&#62;As far as I know, there is no option to that. The only thing you can do is to crop your image using an image editor and make all their sizes consistent. You can use this image size: 930 x 340px for the images in slider. Hope this helps. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>fxjunk on "Image Resizing for HomePage Slider"</title>
			<link>http://www.kriesi.at/support/topic/image-resizing-for-homepage-slider#post-71297</link>
			<pubDate>Thu, 16 Aug 2012 03:18:07 +0000</pubDate>
			<dc:creator>fxjunk</dc:creator>
			<guid isPermaLink="false">71297@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi, I noticed that the Homepage slider will automatically resize the images I upload. What is the ideal image size to upload? If my image size is not identical or proportional to the ideal image size (of the slider), is there anyway I can change the slider settings so that it will not resize my images?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
