<?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 - User Favorites: JoeLamari</title>
		<link><a href='http://www.kriesi.at/support/profile/joelamari'>joelamari</a></link>
		<description>Support Forum - User Favorites: JoeLamari</description>
		<language>en-US</language>
		<pubDate>Sat, 18 May 2013 11:42:05 +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/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>Ismael on "Change Logo URL to a New Address in Flashlight"</title>
			<link>http://www.kriesi.at/support/topic/change-logo-url-to-a-new-address-in-flashlight#post-108549</link>
			<pubDate>Thu, 02 May 2013 23:21:49 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">108549@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Glad we could help. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Graffinis on "Change Logo URL to a New Address in Flashlight"</title>
			<link>http://www.kriesi.at/support/topic/change-logo-url-to-a-new-address-in-flashlight#post-108463</link>
			<pubDate>Thu, 02 May 2013 15:50:58 +0000</pubDate>
			<dc:creator>Graffinis</dc:creator>
			<guid isPermaLink="false">108463@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;It worked! Thank you very much.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kaylesimon on "How to change &#34; Select Options &#34; Label on Variable Product Thumbnail?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-change-select-options-label-on-variable-product-thumbnail#post-108269</link>
			<pubDate>Wed, 01 May 2013 20:23:04 +0000</pubDate>
			<dc:creator>kaylesimon</dc:creator>
			<guid isPermaLink="false">108269@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I love when people put fixes here in the forum. Thanks a mil, andihalim.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Change Logo URL to a New Address in Flashlight"</title>
			<link>http://www.kriesi.at/support/topic/change-logo-url-to-a-new-address-in-flashlight#post-107877</link>
			<pubDate>Tue, 30 Apr 2013 01:41:44 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">107877@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Edit framework &#38;gt; php &#38;gt; function-set-avia-frontend.php and find this code&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if(!function_exists(&#38;#39;avia_logo&#38;#39;))
{
	/**
	 * return the logo of the theme. if a logo was uploaded and set at the backend options panel display it
	 * otherwise display the logo file linked in the css file for the .bg-logo class
	 * @return string the logo + url
	 */
	function avia_logo($use_image = &#38;quot;&#38;quot;, $sub = &#38;quot;&#38;quot;, $headline_type = &#38;quot;h1&#38;quot;)
	{
		$use_image = apply_filters(&#38;#39;avia_logo_filter&#38;#39;, $use_image);
		$headline_type = apply_filters(&#38;#39;avia_logo_headline_filter&#38;#39;, $headline_type);
		if($sub) $sub = &#38;quot;&#38;lt;span class=&#38;#39;subtext&#38;#39;&#38;gt;$sub&#38;lt;/span&#38;gt;&#38;quot;;

		if($logo = avia_get_option(&#38;#39;logo&#38;#39;))
		{
			 $logo = &#38;quot;&#38;lt;img src=&#38;quot;.$logo.&#38;quot; alt=&#38;#39;&#38;#39; /&#38;gt;&#38;quot;;
			 $logo = &#38;quot;&#38;lt;$headline_type class=&#38;#39;logo&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;&#38;quot;.home_url(&#38;#39;/&#38;#39;).&#38;quot;&#38;#39;&#38;gt;&#38;quot;.$logo.&#38;quot;$sub&#38;lt;/a&#38;gt;&#38;lt;/$headline_type&#38;gt;&#38;quot;;
		}
		else
		{
			$logo = get_bloginfo(&#38;#39;name&#38;#39;);
			if($use_image) $logo = &#38;quot;&#38;lt;img src=&#38;quot;.$use_image.&#38;quot; alt=&#38;#39;&#38;#39; title=&#38;#39;$logo&#38;#39;/&#38;gt;&#38;quot;;
			$logo = &#38;quot;&#38;lt;$headline_type class=&#38;#39;logo bg-logo&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;&#38;quot;.home_url(&#38;#39;/&#38;#39;).&#38;quot;&#38;#39;&#38;gt;&#38;quot;.$logo.&#38;quot;$sub&#38;lt;/a&#38;gt;&#38;lt;/$headline_type&#38;gt;&#38;quot;;
		}

		return $logo;
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Replace it with &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if(!function_exists(&#38;#39;avia_logo&#38;#39;))
{
	/**
	 * return the logo of the theme. if a logo was uploaded and set at the backend options panel display it
	 * otherwise display the logo file linked in the css file for the .bg-logo class
	 * @return string the logo + url
	 */
	function avia_logo($use_image = &#38;quot;&#38;quot;, $sub = &#38;quot;&#38;quot;, $headline_type = &#38;quot;h1&#38;quot;)
	{
		$use_image = apply_filters(&#38;#39;avia_logo_filter&#38;#39;, $use_image);
		$headline_type = apply_filters(&#38;#39;avia_logo_headline_filter&#38;#39;, $headline_type);
		if($sub) $sub = &#38;quot;&#38;lt;span class=&#38;#39;subtext&#38;#39;&#38;gt;$sub&#38;lt;/span&#38;gt;&#38;quot;;

		if($logo = avia_get_option(&#38;#39;logo&#38;#39;))
		{
			 $logo = &#38;quot;&#38;lt;img src=&#38;quot;.$logo.&#38;quot; alt=&#38;#39;&#38;#39; /&#38;gt;&#38;quot;;
			 $logo = &#38;quot;&#38;lt;$headline_type class=&#38;#39;logo&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;http://www.kriesi.at&#38;#39;&#38;gt;&#38;quot;.$logo.&#38;quot;$sub&#38;lt;/a&#38;gt;&#38;lt;/$headline_type&#38;gt;&#38;quot;;
		}
		else
		{
			$logo = get_bloginfo(&#38;#39;name&#38;#39;);
			if($use_image) $logo = &#38;quot;&#38;lt;img src=&#38;quot;.$use_image.&#38;quot; alt=&#38;#39;&#38;#39; title=&#38;#39;$logo&#38;#39;/&#38;gt;&#38;quot;;
			$logo = &#38;quot;&#38;lt;$headline_type class=&#38;#39;logo bg-logo&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;http://www.kriesi.at&#38;#39;&#38;gt;&#38;quot;.$logo.&#38;quot;$sub&#38;lt;/a&#38;gt;&#38;lt;/$headline_type&#38;gt;&#38;quot;;
		}

		return $logo;
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can enter the URL on these parts of the code&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$logo = &#38;quot;&#38;lt;$headline_type class=&#38;#39;logo&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;http://www.kriesi.at&#38;#39;&#38;gt;&#38;quot;.$logo.&#38;quot;$sub&#38;lt;/a&#38;gt;&#38;lt;/$headline_type&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$logo = &#38;quot;&#38;lt;$headline_type class=&#38;#39;logo bg-logo&#38;#39;&#38;gt;&#38;lt;a href=&#38;#39;http://www.kriesi.at&#38;#39;&#38;gt;&#38;quot;.$logo.&#38;quot;$sub&#38;lt;/a&#38;gt;&#38;lt;/$headline_type&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Graffinis on "Change Logo URL to a New Address in Flashlight"</title>
			<link>http://www.kriesi.at/support/topic/change-logo-url-to-a-new-address-in-flashlight#post-107834</link>
			<pubDate>Mon, 29 Apr 2013 20:08:08 +0000</pubDate>
			<dc:creator>Graffinis</dc:creator>
			<guid isPermaLink="false">107834@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Is there a way to change the url to another address in the Flashlight Theme specifically.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>summerrane on "Recommended settings for W3 Total Cache"</title>
			<link>http://www.kriesi.at/support/topic/recommended-settings-for-w3-total-cache#post-94318</link>
			<pubDate>Thu, 31 Jan 2013 14:44:11 +0000</pubDate>
			<dc:creator>summerrane</dc:creator>
			<guid isPermaLink="false">94318@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Dude, yep I use it with woocommerce so I'll leave database and objects unchecked. Thanks again!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Recommended settings for W3 Total Cache"</title>
			<link>http://www.kriesi.at/support/topic/recommended-settings-for-w3-total-cache#post-94273</link>
			<pubDate>Thu, 31 Jan 2013 07:54:30 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">94273@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; It depends on your website. If you want to use WooCommerce with Propulsion I wouldn't cache the database or objects because this will break the website for &#34;guests&#34; (are not logged in). &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>summerrane on "Recommended settings for W3 Total Cache"</title>
			<link>http://www.kriesi.at/support/topic/recommended-settings-for-w3-total-cache#post-94212</link>
			<pubDate>Wed, 30 Jan 2013 20:36:07 +0000</pubDate>
			<dc:creator>summerrane</dc:creator>
			<guid isPermaLink="false">94212@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Ismael, thanks for that and sorry for the late reply. I read in a separate thread that database and object cache should be disabled but you say enable them? &#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Increase size of sidebar and or decrease page content area"</title>
			<link>http://www.kriesi.at/support/topic/increase-size-of-sidebar-and-or-decrease-page-content-area#post-93800</link>
			<pubDate>Mon, 28 Jan 2013 19:47:23 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">93800@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad Ismael 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>BenWorx on "Increase size of sidebar and or decrease page content area"</title>
			<link>http://www.kriesi.at/support/topic/increase-size-of-sidebar-and-or-decrease-page-content-area#post-93706</link>
			<pubDate>Mon, 28 Jan 2013 13:19:57 +0000</pubDate>
			<dc:creator>BenWorx</dc:creator>
			<guid isPermaLink="false">93706@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanx!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Increase size of sidebar and or decrease page content area"</title>
			<link>http://www.kriesi.at/support/topic/increase-size-of-sidebar-and-or-decrease-page-content-area#post-93556</link>
			<pubDate>Sat, 26 Jan 2013 23:56:11 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">93556@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;You can add this on your custom.css&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.sidebar.units.sidebar_right.three {
width: 300px;
}

.content.nine.alpha.units {
width: 600px;
}

.six.units.entry-content {
width: 360px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can decrease or increase the size. Always starts with the sidebar then do the math. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>squiloogle on "Framed caption colour"</title>
			<link>http://www.kriesi.at/support/topic/framed-caption-colour#post-93516</link>
			<pubDate>Sat, 26 Jan 2013 12:40:00 +0000</pubDate>
			<dc:creator>squiloogle</dc:creator>
			<guid isPermaLink="false">93516@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Awesome! Worked perfectly - thanks for your help!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Framed caption colour"</title>
			<link>http://www.kriesi.at/support/topic/framed-caption-colour#post-93500</link>
			<pubDate>Sat, 26 Jan 2013 08:08:39 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">93500@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
Please add followintg css code to css/custom.css (or insert it into the quick css option field):&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;.caption_right_framed .slideshow_caption .slideshow_inner_caption, .caption_left_framed .slideshow_caption .slideshow_inner_caption {
background: rgba(0,0,0,0.5) !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Change the rgba value if you want to use another color (0,0,0) is black. 0.5 is the opacity value which needs to be between 0 and 1. You can use this converter: &#60;a href=&#34;http://hex2rgba.devoth.com/&#34; rel=&#34;nofollow&#34;&#62;http://hex2rgba.devoth.com/&#60;/a&#62; to convert your hex color values to rgba.&#60;/p&#62;
&#60;p&#62;If you want to change the color value for each slide try:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;/slide 1 color*/
.caption_right_framed.slide_number_1 .slideshow_caption .slideshow_inner_caption, .caption_left_framed.slide_number_1 .slideshow_caption .slideshow_inner_caption {
background: rgba(0,0,0,0.5) !important;
}

/*slide 2 color*/
.caption_right_framed.slide_number_2 .slideshow_caption .slideshow_inner_caption, .caption_left_framed.slide_number_2 .slideshow_caption .slideshow_inner_caption {
background: rgba(0,0,0,0.5) !important;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Note that you need to duplicate the code for each slide - then replace the number in &#34;slide_number_2&#34; with the right slide number.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>squiloogle on "Framed caption colour"</title>
			<link>http://www.kriesi.at/support/topic/framed-caption-colour#post-93497</link>
			<pubDate>Sat, 26 Jan 2013 04:26:37 +0000</pubDate>
			<dc:creator>squiloogle</dc:creator>
			<guid isPermaLink="false">93497@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi there, &#60;/p&#62;
&#60;p&#62;Just bought Propulsion (love it) and part way through creating my new site. I would like to know how to change the colour of the &#34;frame&#34; for the caption in the slideshow. At the moment it turns out grey - I've tried poking around in the css but to no avail - ideally I'd be adding to custom.css instead of changing existing files anyway.&#60;/p&#62;
&#60;p&#62;Assuming that's possible second question is maybe a little harder (or perhaps a lot). I'd love to be able to have different colours for different caption frames. So one slide might have an orange overlay, another might have a green (my site is predominantly based on white background with white background to slideshow so this would look quite striking if possible). If I can only have one color for all I'll still be pretty happy though :).&#60;/p&#62;
&#60;p&#62;Thanks in advance for any help you can give!&#60;/p&#62;
&#60;p&#62;Thanks in advance for your help!&#60;/p&#62;
&#60;p&#62;Kind regards, &#60;/p&#62;
&#60;p&#62;James
&#60;/p&#62;</description>
		</item>
		<item>
			<title>BenWorx on "Increase size of sidebar and or decrease page content area"</title>
			<link>http://www.kriesi.at/support/topic/increase-size-of-sidebar-and-or-decrease-page-content-area#post-93464</link>
			<pubDate>Fri, 25 Jan 2013 20:42:55 +0000</pubDate>
			<dc:creator>BenWorx</dc:creator>
			<guid isPermaLink="false">93464@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Good evening my dear rescuers..&#60;/p&#62;
&#60;p&#62;I would very much like to increase the size of my sidebar and or decrease the size of&#60;br /&#62;
the page content area..&#60;/p&#62;
&#60;p&#62;Thanx a milion!&#60;/p&#62;
&#60;p&#62;Ben
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Templatation on "Is bbPress v2.2.3 incompatible with propulsion v1.7?"</title>
			<link>http://www.kriesi.at/support/topic/is-bbpress-v223-incompatible-with-propulsion-v17#post-92389</link>
			<pubDate>Sat, 19 Jan 2013 08:44:05 +0000</pubDate>
			<dc:creator>Templatation</dc:creator>
			<guid isPermaLink="false">92389@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Peter,&#60;/p&#62;
&#60;p&#62;Thanks, your instructions worked.&#60;br /&#62;
Now using wp3.5+propulsion1.7+bbpress2.2.3&#60;/p&#62;
&#60;p&#62;Regards.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Is bbPress v2.2.3 incompatible with propulsion v1.7?"</title>
			<link>http://www.kriesi.at/support/topic/is-bbpress-v223-incompatible-with-propulsion-v17#post-92380</link>
			<pubDate>Sat, 19 Jan 2013 07:37:34 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">92380@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Yes, Propulsion is incompatible with bbpress 2.2.x because the plugin devs changed the template structure. You can delete the forum template in the Propulsion folder (called forum.php) and bbpress 2.2.3 should work fine afterwards. &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Templatation on "Is bbPress v2.2.3 incompatible with propulsion v1.7?"</title>
			<link>http://www.kriesi.at/support/topic/is-bbpress-v223-incompatible-with-propulsion-v17#post-92378</link>
			<pubDate>Sat, 19 Jan 2013 06:52:39 +0000</pubDate>
			<dc:creator>Templatation</dc:creator>
			<guid isPermaLink="false">92378@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Using wp3.5+propulsion1.7+bbpress2.1.2&#60;br /&#62;
Theme just didn't render forums as expected.&#60;br /&#62;
Also tried this suggested solution &#60;a href=&#34;http://www.kriesi.at/support/topic/bbpress-gone&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/bbpress-gone&#60;/a&#62; but it still didn't work.&#60;/p&#62;
&#60;p&#62;Please advise.&#60;/p&#62;
&#60;p&#62;Regards.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Change &#34;Send us Mail&#34; Text in Contact Form"</title>
			<link>http://www.kriesi.at/support/topic/change-send-us-mail-text-in-contact-form#post-91109</link>
			<pubDate>Fri, 11 Jan 2013 09:15:39 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">91109@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Open includes &#38;gt; contact-form.php and find this code&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;quot;heading&#38;quot; =&#38;gt; &#38;quot;&#38;lt;h3&#38;gt;&#38;quot;.__(&#38;#39;Send us mail&#38;#39;,&#38;#39;avia_framework&#38;#39;).&#38;quot;&#38;lt;/h3&#38;gt;&#38;quot;,&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>samforan on "Change &#34;Send us Mail&#34; Text in Contact Form"</title>
			<link>http://www.kriesi.at/support/topic/change-send-us-mail-text-in-contact-form#post-91039</link>
			<pubDate>Thu, 10 Jan 2013 20:18:16 +0000</pubDate>
			<dc:creator>samforan</dc:creator>
			<guid isPermaLink="false">91039@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;How can I change this text, what file is it located in? I want to change it simply to something like &#34;Send Me a Message&#34;&#60;/p&#62;
&#60;p&#62;Thanks in advance.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "How to hide shop header from specific pages"</title>
			<link>http://www.kriesi.at/support/topic/how-to-hide-shop-header-from-specific-pages#post-83550</link>
			<pubDate>Tue, 13 Nov 2012 02:37:13 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">83550@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Yadoz,&#60;/p&#62;
&#60;p&#62;Glad that Peter helped you. :)&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Yadoz on "How to hide shop header from specific pages"</title>
			<link>http://www.kriesi.at/support/topic/how-to-hide-shop-header-from-specific-pages#post-83536</link>
			<pubDate>Mon, 12 Nov 2012 23:52:40 +0000</pubDate>
			<dc:creator>Yadoz</dc:creator>
			<guid isPermaLink="false">83536@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Awesome! Thank you Dude!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ATX on "Propulsion: social media icon/link options"</title>
			<link>http://www.kriesi.at/support/topic/propulsion-social-media-iconlink-options#post-83039</link>
			<pubDate>Fri, 09 Nov 2012 14:24:05 +0000</pubDate>
			<dc:creator>ATX</dc:creator>
			<guid isPermaLink="false">83039@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Ahh.. Thx
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Propulsion: social media icon/link options"</title>
			<link>http://www.kriesi.at/support/topic/propulsion-social-media-iconlink-options#post-82959</link>
			<pubDate>Fri, 09 Nov 2012 01:22:12 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">82959@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;You can find the icons on propulsion\wp-content\themes\propulsion\images\layout. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ATX on "Propulsion: social media icon/link options"</title>
			<link>http://www.kriesi.at/support/topic/propulsion-social-media-iconlink-options#post-82921</link>
			<pubDate>Thu, 08 Nov 2012 18:45:17 +0000</pubDate>
			<dc:creator>ATX</dc:creator>
			<guid isPermaLink="false">82921@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Still not sure where the icon images are stored/pulled from (I can't find them in the Propulsion files like I can for Coherence).&#60;br /&#62;
Pls advise.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "The width of the post"</title>
			<link>http://www.kriesi.at/support/topic/the-width-of-the-post#post-82810</link>
			<pubDate>Thu, 08 Nov 2012 03:52:14 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">82810@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad we could help  Joe :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>JoeLamari on "The width of the post"</title>
			<link>http://www.kriesi.at/support/topic/the-width-of-the-post#post-82761</link>
			<pubDate>Wed, 07 Nov 2012 19:54:04 +0000</pubDate>
			<dc:creator>JoeLamari</dc:creator>
			<guid isPermaLink="false">82761@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks again Devin.&#60;/p&#62;
&#60;p&#62;That was the fastest response!!!! Bravo...talk about &#34;Responsive Web Design&#34;!!!!&#60;/p&#62;
&#60;p&#62;Joe
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "The width of the post"</title>
			<link>http://www.kriesi.at/support/topic/the-width-of-the-post#post-82757</link>
			<pubDate>Wed, 07 Nov 2012 19:46:16 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">82757@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey Joe,&#60;/p&#62;
&#60;p&#62;In the same files you've been working on just look for:&#60;br /&#62;
&#60;code&#62;&#38;lt;h1 class=&#38;#39;post-title offset-by-three&#38;#39;&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Change it to offset-by-two or offset-by-one and that way you aren't modifying the grid but working with it :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>JoeLamari on "The width of the post"</title>
			<link>http://www.kriesi.at/support/topic/the-width-of-the-post#post-82755</link>
			<pubDate>Wed, 07 Nov 2012 19:43:26 +0000</pubDate>
			<dc:creator>JoeLamari</dc:creator>
			<guid isPermaLink="false">82755@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Devin,&#60;/p&#62;
&#60;p&#62;That worked but I also added custom CSS as follows to justify the title margin:&#60;/p&#62;
&#60;p&#62;#top .offset-by-three {&#60;br /&#62;
    padding-left: 160px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;original padding left was 240px. It works but is there a more simple way of doing this?&#60;/p&#62;
&#60;p&#62;Joe
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Propulsion: social media icon/link options"</title>
			<link>http://www.kriesi.at/support/topic/propulsion-social-media-iconlink-options#post-82742</link>
			<pubDate>Wed, 07 Nov 2012 18:53:47 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">82742@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Its the very last bit of css above.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
