<?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 - Topic: change image size on sentence combo widget</title>
		<link>http://www.kriesi.at/support/topic/change-image-size-on-sentence-combo-widget</link>
		<description>Support Forum - Topic: change image size on sentence combo widget</description>
		<language>en-US</language>
		<pubDate>Thu, 23 May 2013 07:03:55 +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/topic/change-image-size-on-sentence-combo-widget" rel="self" type="application/rss+xml" />

		<item>
			<title>Ismael on "change image size on sentence combo widget"</title>
			<link>http://www.kriesi.at/support/topic/change-image-size-on-sentence-combo-widget#post-80422</link>
			<pubDate>Sat, 20 Oct 2012 00:25:16 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">80422@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;I'm sure Peter's solution will work. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>terryhoulding on "change image size on sentence combo widget"</title>
			<link>http://www.kriesi.at/support/topic/change-image-size-on-sentence-combo-widget#post-80375</link>
			<pubDate>Fri, 19 Oct 2012 17:09:57 +0000</pubDate>
			<dc:creator>terryhoulding</dc:creator>
			<guid isPermaLink="false">80375@http://www.kriesi.at/support/</guid>
			<description>&#60;br /&#62;</description>
		</item>
		<item>
			<title>Dude on "change image size on sentence combo widget"</title>
			<link>http://www.kriesi.at/support/topic/change-image-size-on-sentence-combo-widget#post-80007</link>
			<pubDate>Wed, 17 Oct 2012 07:03:23 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">80007@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Yes, you can change the thumbnail size in functions.php - open up the file and replace:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;widget&#38;#39;] 			 	= array(&#38;#39;width&#38;#39;=&#38;gt;36,  &#38;#39;height&#38;#39;=&#38;gt;36 );						// small preview pics eg sidebar news&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;widget&#38;#39;] 			 	= array(&#38;#39;width&#38;#39;=&#38;gt;50,  &#38;#39;height&#38;#39;=&#38;gt;50 );						// small preview pics eg sidebar news&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Afterwards regenerate the thumbnails: &#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;Open up sentence\framework\php\class-framework-widgets.php and remove following code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;echo &#38;quot;&#38;lt;span class=&#38;#39;news-thumb&#38;#39;&#38;gt;&#38;quot;;
		echo get_avatar($comment,&#38;#39;48&#38;#39;);
		echo &#38;quot;&#38;lt;/span&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>terryhoulding on "change image size on sentence combo widget"</title>
			<link>http://www.kriesi.at/support/topic/change-image-size-on-sentence-combo-widget#post-79840</link>
			<pubDate>Mon, 15 Oct 2012 19:14:45 +0000</pubDate>
			<dc:creator>terryhoulding</dc:creator>
			<guid isPermaLink="false">79840@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Ismael&#60;/p&#62;
&#60;p&#62;Managed to get that one to work thanks. Can scale the picture frames and images up. Is there anyway to increase the resolution of the thumbnail accordingly?&#60;br /&#62;
Also, in the same widget, is it possible to edit the widget so that in the recent comment tab, the gravatars dont show?&#60;/p&#62;
&#60;p&#62;Thank you
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "change image size on sentence combo widget"</title>
			<link>http://www.kriesi.at/support/topic/change-image-size-on-sentence-combo-widget#post-79752</link>
			<pubDate>Mon, 15 Oct 2012 04:40:31 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">79752@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;You can adjust the image size on custom.css by doing this&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.news-thumb {
width: 50px;
height: 50px;
}

.news-thumb img {
width: 50px;
height: 50px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Adjust width and height.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>terryhoulding on "change image size on sentence combo widget"</title>
			<link>http://www.kriesi.at/support/topic/change-image-size-on-sentence-combo-widget#post-79572</link>
			<pubDate>Fri, 12 Oct 2012 19:14:51 +0000</pubDate>
			<dc:creator>terryhoulding</dc:creator>
			<guid isPermaLink="false">79572@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi there&#60;/p&#62;
&#60;p&#62;Is it possible to change the size of the thumbnail images in the sentence combo widgets. Im looking to either increase the size and retain the text or, increase image size and sacrifice the text. If this is doable, how do I do it?&#60;/p&#62;
&#60;p&#62;Thank you
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
