<?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: head - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/head</link>
		<description>Support Forum - Tag: head - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Wed, 22 May 2013 17:19:19 +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/head" rel="self" type="application/rss+xml" />

		<item>
			<title>Devin on "Enqueued scripts inserted in the middle of the body"</title>
			<link>http://www.kriesi.at/support/topic/enqueued-scripts-inserted-in-the-middle-of-the-body#post-91891</link>
			<pubDate>Wed, 16 Jan 2013 15:36:29 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">91891@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad Dude 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>FarenAgency on "Enqueued scripts inserted in the middle of the body"</title>
			<link>http://www.kriesi.at/support/topic/enqueued-scripts-inserted-in-the-middle-of-the-body#post-91746</link>
			<pubDate>Tue, 15 Jan 2013 19:07:25 +0000</pubDate>
			<dc:creator>FarenAgency</dc:creator>
			<guid isPermaLink="false">91746@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;That worked. Thank you very much.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Enqueued scripts inserted in the middle of the body"</title>
			<link>http://www.kriesi.at/support/topic/enqueued-scripts-inserted-in-the-middle-of-the-body#post-91276</link>
			<pubDate>Sat, 12 Jan 2013 17:04:06 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">91276@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;The datepicker doesn't support custom z-index values. If the theme (like Replete) changes the z-index for the content area the datepicker div will break. You need to add following code to css/custom.css or the quick css field to fix the issue:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.ui-datepicker{
z-index: 99 !important;
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>FarenAgency on "Enqueued scripts inserted in the middle of the body"</title>
			<link>http://www.kriesi.at/support/topic/enqueued-scripts-inserted-in-the-middle-of-the-body#post-91162</link>
			<pubDate>Fri, 11 Jan 2013 16:57:24 +0000</pubDate>
			<dc:creator>FarenAgency</dc:creator>
			<guid isPermaLink="false">91162@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks for the quick reply, &#60;/p&#62;
&#60;p&#62;The issue that I'm having is that I can not have jquery datepicker to work with your theme. I thought it had something to do with the way some script are included in footer, but it sees the problem is elsewhere.&#60;/p&#62;
&#60;p&#62;Here's what I'm enqueuing:&#60;/p&#62;
&#60;p&#62;wp_enqueue_style('jquery-ui', 'http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css');&#60;br /&#62;
wp_enqueue_script('jquery-ui-datepicker');&#60;/p&#62;
&#60;p&#62;From what I understand, there is a conflict with prettyphoto used in the theme.&#60;/p&#62;
&#60;p&#62;I do not get any js errors, but the popup does not appear in your theme. It appears if i switch to a different theme though.&#60;/p&#62;
&#60;p&#62;Could you look into this please?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Enqueued scripts inserted in the middle of the body"</title>
			<link>http://www.kriesi.at/support/topic/enqueued-scripts-inserted-in-the-middle-of-the-body#post-90948</link>
			<pubDate>Thu, 10 Jan 2013 11:46:52 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">90948@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Some javascripts are added into the footer section (before the closing body tag (I wouldn't call this &#34;in the middle&#34; though)). It's considered &#34;best practice&#34; to load/include the scripts at the end of the html document because it can speed up the loading process (including page generation &#38;amp; code execution) a bit. The wp_enqueue script function supports both locations (head or footer): &#60;a href=&#34;http://codex.wordpress.org/Function_Reference/wp_enqueue_script#Parameters&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Function_Reference/wp_enqueue_script#Parameters&#60;/a&#62; (in_footer parameter). &#60;/p&#62;
&#60;p&#62;If you want to change the location of the theme scripts open up functions.php and replace:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;wp_register_script( &#38;#39;avia-prettyPhoto&#38;#39;,  AVIA_BASE_URL.&#38;#39;js/prettyPhoto/js/jquery.prettyPhoto.js&#38;#39;, &#38;#39;jquery&#38;#39;, &#38;quot;3.0.1&#38;quot;, true);
		wp_register_script( &#38;#39;aviapoly-slider&#38;#39;,  AVIA_BASE_URL.&#38;#39;js/aviapoly2.js&#38;#39;, &#38;#39;jquery&#38;#39;, &#38;quot;1.0.0&#38;quot;, true);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;wp_register_script( &#38;#39;avia-prettyPhoto&#38;#39;,  AVIA_BASE_URL.&#38;#39;js/prettyPhoto/js/jquery.prettyPhoto.js&#38;#39;, &#38;#39;jquery&#38;#39;, &#38;quot;3.0.1&#38;quot;, false);
		wp_register_script( &#38;#39;aviapoly-slider&#38;#39;,  AVIA_BASE_URL.&#38;#39;js/aviapoly2.js&#38;#39;, &#38;#39;jquery&#38;#39;, &#38;quot;1.0.0&#38;quot;, false);&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>FarenAgency on "Enqueued scripts inserted in the middle of the body"</title>
			<link>http://www.kriesi.at/support/topic/enqueued-scripts-inserted-in-the-middle-of-the-body#post-90811</link>
			<pubDate>Wed, 09 Jan 2013 15:46:47 +0000</pubDate>
			<dc:creator>FarenAgency</dc:creator>
			<guid isPermaLink="false">90811@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Devin, thank you very much for quick reply.&#60;/p&#62;
&#60;p&#62;An example can be observed here: &#60;a href=&#34;http://www.hiyorkdale.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.hiyorkdale.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Disabling plugins didn't help.&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Enqueued scripts inserted in the middle of the body"</title>
			<link>http://www.kriesi.at/support/topic/enqueued-scripts-inserted-in-the-middle-of-the-body#post-90643</link>
			<pubDate>Tue, 08 Jan 2013 19:54:44 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">90643@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey FarenAgency,&#60;/p&#62;
&#60;p&#62;Can we take a look at your site live? They should only be getting spit out at wp_head in the header.php file. Can you also try disabling all active plugins except for woocommerce and see if that fixes the issue?&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>FarenAgency on "Enqueued scripts inserted in the middle of the body"</title>
			<link>http://www.kriesi.at/support/topic/enqueued-scripts-inserted-in-the-middle-of-the-body#post-90568</link>
			<pubDate>Tue, 08 Jan 2013 14:54:14 +0000</pubDate>
			<dc:creator>FarenAgency</dc:creator>
			<guid isPermaLink="false">90568@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;It appears that for some reason enqueued scripts are being inserted in the middle of the body instead of head, which causes issues. &#60;/p&#62;
&#60;p&#62;What may be causing this and can this be fixed?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Problems with head title"</title>
			<link>http://www.kriesi.at/support/topic/problems-with-head-title#post-69379</link>
			<pubDate>Sun, 05 Aug 2012 02:11:00 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">69379@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi jsbls,&#60;/p&#62;
&#60;p&#62;Glad that I could help. :)&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jsbls on "Problems with head title"</title>
			<link>http://www.kriesi.at/support/topic/problems-with-head-title#post-69283</link>
			<pubDate>Fri, 03 Aug 2012 18:25:41 +0000</pubDate>
			<dc:creator>jsbls</dc:creator>
			<guid isPermaLink="false">69283@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Worked like a charm. Thanks!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Problems with head title"</title>
			<link>http://www.kriesi.at/support/topic/problems-with-head-title#post-69182</link>
			<pubDate>Fri, 03 Aug 2012 07:17:39 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">69182@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi jslbs,&#60;/p&#62;
&#60;p&#62;Kindly change your title code:&#60;br /&#62;
&#60;code&#62;&#38;lt;title&#38;gt;&#38;lt;?php bloginfo(&#38;#39;name&#38;#39;); ?&#38;gt; &#124; &#38;lt;?php is_home() ? bloginfo(&#38;#39;description&#38;#39;) : wp_title(&#38;#39;Home&#38;#39;); ?&#38;gt;&#38;lt;/title&#38;gt;&#60;/code&#62;&#60;br /&#62;
To the default code:&#60;br /&#62;
&#60;code&#62;&#38;lt;title&#38;gt;&#38;lt;?php bloginfo(&#38;#39;name&#38;#39;); ?&#38;gt; &#124; &#38;lt;?php is_home() ? bloginfo(&#38;#39;description&#38;#39;) : wp_title(&#38;#39;&#38;#39;); ?&#38;gt;&#38;lt;/title&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I think the homepage is already fixed as I can see this in the title: Jaime Smeke Balas :: Diseño Interactivo &#124; Diseño Web, Diseño Interactivo, Redes Sociales y Experiencias Multimedia&#60;/p&#62;
&#60;p&#62;However, in other pages, The page/post title is always preceded by Home, just like: Jaime Smeke Balas :: Diseño Interactivo &#124;  Home Carteles El Ingenio&#60;/p&#62;
&#60;p&#62;The above code only resolves the  page/post title is always preceded by Home. Hope this is helpful. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jsbls on "Problems with head title"</title>
			<link>http://www.kriesi.at/support/topic/problems-with-head-title#post-69168</link>
			<pubDate>Fri, 03 Aug 2012 05:13:31 +0000</pubDate>
			<dc:creator>jsbls</dc:creator>
			<guid isPermaLink="false">69168@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi, thanks for the quick reply.&#60;/p&#62;
&#60;p&#62;I did have Settings &#38;gt; Reading &#38;gt; Front page displays &#38;gt; Static page set... however, I reset it, then selected my front page on theme options, and the problem persisted...&#60;/p&#62;
&#60;p&#62;Regards
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Problems with head title"</title>
			<link>http://www.kriesi.at/support/topic/problems-with-head-title#post-69136</link>
			<pubDate>Fri, 03 Aug 2012 01:15:02 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">69136@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;Did you set Settings &#38;gt; Reading &#38;gt; Front page displays &#38;gt; Static page? If so please reset it then on Theme Options select the page that you want to be as home page.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jsbls on "Problems with head title"</title>
			<link>http://www.kriesi.at/support/topic/problems-with-head-title#post-69076</link>
			<pubDate>Thu, 02 Aug 2012 20:28:08 +0000</pubDate>
			<dc:creator>jsbls</dc:creator>
			<guid isPermaLink="false">69076@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi, I'm having an issue that's been bugging me out.&#60;/p&#62;
&#60;p&#62;In the header.php file, i have this line:&#60;/p&#62;
&#60;p&#62;&#38;lt;title&#38;gt;&#38;lt;?php bloginfo('name'); ?&#38;gt; &#124; &#38;lt;?php is_home() ? bloginfo('description') : wp_title('Home'); ?&#38;gt;&#38;lt;/title&#38;gt;&#60;/p&#62;
&#60;p&#62;Which should render Home/blog description on the front page and the post/portfolio title on single pages, however, on the front page i get nothing (SITE TITLE &#124; ), and on all the other pages i get SITE TITLE &#124; Home SINGLE PAGE TITLE.&#60;/p&#62;
&#60;p&#62;Why is this happening? I tried to modify the if statement, but can't seem to get it right. Any help?&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "How to remove the banner?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-the-banner#post-53734</link>
			<pubDate>Fri, 27 Apr 2012 17:20:24 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">53734@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Try adding this code in your Quick CSS or custom.css:&#60;br /&#62;
&#60;code&#62;.color_strip.primary-background {&#60;br /&#62;
background: none!important;&#60;br /&#62;
}&#60;/code&#62;&#60;br /&#62;
Hope this helps. :)&#60;/p&#62;
&#60;p&#62;Best Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>otnchristie on "How to remove the banner?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-the-banner#post-53707</link>
			<pubDate>Fri, 27 Apr 2012 14:21:14 +0000</pubDate>
			<dc:creator>otnchristie</dc:creator>
			<guid isPermaLink="false">53707@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Tried that but still getting the line at the very top of the page.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://otnchristie.fatcow.com/rd/&#34; rel=&#34;nofollow&#34;&#62;http://otnchristie.fatcow.com/rd/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mya on "How to remove the banner?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-the-banner#post-53705</link>
			<pubDate>Fri, 27 Apr 2012 14:08:05 +0000</pubDate>
			<dc:creator>Mya</dc:creator>
			<guid isPermaLink="false">53705@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Oliver,&#60;/p&#62;
&#60;p&#62;Add this to your custom.css or Quick CSS.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;.social_container { display:none; }&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Mya
&#60;/p&#62;</description>
		</item>
		<item>
			<title>otnchristie on "How to remove the banner?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-the-banner#post-53695</link>
			<pubDate>Fri, 27 Apr 2012 13:16:17 +0000</pubDate>
			<dc:creator>otnchristie</dc:creator>
			<guid isPermaLink="false">53695@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;The banner is the bar at the very top of the page. With the 'info' button on the left when there is a message inside.&#60;/p&#62;
&#60;p&#62;Thanks for your advice.&#60;/p&#62;
&#60;p&#62;Oliver
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mya on "How to remove the banner?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-the-banner#post-53612</link>
			<pubDate>Fri, 27 Apr 2012 00:51:56 +0000</pubDate>
			<dc:creator>Mya</dc:creator>
			<guid isPermaLink="false">53612@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;What banner are you referring to? The with the info button at the top of the website.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Mya
&#60;/p&#62;</description>
		</item>
		<item>
			<title>otnchristie on "How to remove the banner?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-the-banner#post-53607</link>
			<pubDate>Fri, 27 Apr 2012 00:16:26 +0000</pubDate>
			<dc:creator>otnchristie</dc:creator>
			<guid isPermaLink="false">53607@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I am wanting to get rid of the banner so it is no longer used. What is the best way to do this?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "insert Titel of Portfolio"</title>
			<link>http://www.kriesi.at/support/topic/insert-titel-of-portfolio#post-20695</link>
			<pubDate>Wed, 08 Jun 2011 10:15:37 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">20695@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Please try following code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;main&#38;quot; class=&#38;#39;portfolio&#38;#39;&#38;gt;
&#38;lt;h1 class=&#38;quot;siteheading&#38;quot; style=&#38;quot;float:right;&#38;quot;&#38;gt;
&#38;lt;?php
      echo $page_title;
?&#38;gt;
&#38;lt;/h1&#38;gt;
&#38;lt;?php&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>web156 on "insert Titel of Portfolio"</title>
			<link>http://www.kriesi.at/support/topic/insert-titel-of-portfolio#post-20690</link>
			<pubDate>Wed, 08 Jun 2011 09:04:01 +0000</pubDate>
			<dc:creator>web156</dc:creator>
			<guid isPermaLink="false">20690@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;The align of the Siteheading is still not right....its aligned on the left side of the site. Can you fix it?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "insert Titel of Portfolio"</title>
			<link>http://www.kriesi.at/support/topic/insert-titel-of-portfolio#post-20316</link>
			<pubDate>Thu, 02 Jun 2011 10:39:55 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">20316@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
I adjusted the code above a bit. Please try it again.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>web156 on "insert Titel of Portfolio"</title>
			<link>http://www.kriesi.at/support/topic/insert-titel-of-portfolio#post-20282</link>
			<pubDate>Wed, 01 Jun 2011 10:49:56 +0000</pubDate>
			<dc:creator>web156</dc:creator>
			<guid isPermaLink="false">20282@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you!&#60;br /&#62;
Its working..but the formating isn't right. Its just the name of the portfolio without any css. Is it possible to get a style like a normal page?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "insert Titel of Portfolio"</title>
			<link>http://www.kriesi.at/support/topic/insert-titel-of-portfolio#post-20138</link>
			<pubDate>Mon, 30 May 2011 05:18:09 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">20138@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
try following - in template_portfolio.php replace:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;global $k_option, $more;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;global $k_option, $more;
$page_title = get_the_title();&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and replace:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;main&#38;quot; class=&#38;#39;portfolio&#38;#39;&#38;gt;

			&#38;lt;?php&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;main&#38;quot; class=&#38;#39;portfolio&#38;#39;&#38;gt;
&#38;lt;h1 class=&#38;quot;siteheading&#38;quot;&#38;gt;
&#38;lt;?php
      echo $page_title;
?&#38;gt;
&#38;lt;/h1&#38;gt;
&#38;lt;?php&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>web156 on "insert Titel of Portfolio"</title>
			<link>http://www.kriesi.at/support/topic/insert-titel-of-portfolio#post-20110</link>
			<pubDate>Sun, 29 May 2011 17:52:09 +0000</pubDate>
			<dc:creator>web156</dc:creator>
			<guid isPermaLink="false">20110@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
i want to have the titel of each portfolio listed on the top of the site (Like the heading of a normal site)...is this possible?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
