<?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: katalintamas</title>
		<link><a href='http://www.kriesi.at/support/profile/katalintamas'>katalintamas</a></link>
		<description>Support Forum - User Favorites: katalintamas</description>
		<language>en-US</language>
		<pubDate>Thu, 20 Jun 2013 05:37:42 +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>Devin on "Slider problem with Internet Explorer 9., Windows 7"</title>
			<link>http://www.kriesi.at/support/topic/slider-problem-with-internet-explorer-9-windows-7#post-61509</link>
			<pubDate>Thu, 21 Jun 2012 19:05:03 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">61509@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad you were able to find a solution that worked for you :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>katalintamas on "Slider problem with Internet Explorer 9., Windows 7"</title>
			<link>http://www.kriesi.at/support/topic/slider-problem-with-internet-explorer-9-windows-7#post-61416</link>
			<pubDate>Thu, 21 Jun 2012 12:12:24 +0000</pubDate>
			<dc:creator>katalintamas</dc:creator>
			<guid isPermaLink="false">61416@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;br /&#62;
I am the most surprised but it seems to me that I have solved the problem without any programming knowledge. I have replaced this code in index.php:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;content&#38;quot;&#38;gt;
		&#38;lt;?php

		$fullsized = $k_option[&#38;#39;general&#38;#39;][&#38;#39;article_appearance&#38;#39;];
		if($paged &#38;gt;= 2)
		{
			if($k_option[&#38;#39;general&#38;#39;][&#38;#39;article_appearance_sub&#38;#39;] == 1) $fullsized = 0;
			if($k_option[&#38;#39;general&#38;#39;][&#38;#39;article_appearance_sub&#38;#39;] == 2) $fullsized = 10000;
			if($k_option[&#38;#39;general&#38;#39;][&#38;#39;article_appearance_sub&#38;#39;] == 3) $fullsized = $k_option[&#38;#39;general&#38;#39;][&#38;#39;article_appearance&#38;#39;];;
		}

		$negative_cats = preg_replace(&#38;quot;!(\d)+!&#38;quot;,&#38;quot;-${0}$0&#38;quot;, $k_option[&#38;#39;mainpage&#38;#39;][&#38;#39;main_cat_final&#38;#39;]);
		$smallsized = 1;

		$additional_loop = new WP_Query(&#38;quot;cat=&#38;quot;.$negative_cats.&#38;quot;&#38;amp;paged=$paged&#38;quot;);

		if ($additional_loop-&#38;gt;have_posts()) :
		while ($additional_loop-&#38;gt;have_posts()) : $additional_loop-&#38;gt;the_post();&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;content&#38;quot;&#38;gt;
		&#38;lt;?php
		$additional_loop = new WP_Query(&#38;quot;page_id=605&#38;quot;);
	while ($additional_loop-&#38;gt;have_posts()) : $additional_loop-&#38;gt;the_post(); ?&#38;gt;
		&#38;lt;h2 class=&#38;#39;siteheading&#38;#39;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/h2&#38;gt;
		&#38;lt;?php the_content(&#38;#39;Read more&#38;#39;);
	endwhile;
		$fullsized = $k_option[&#38;#39;general&#38;#39;][&#38;#39;article_appearance&#38;#39;];
		if($paged &#38;gt;= 2)
		{
			if($k_option[&#38;#39;general&#38;#39;][&#38;#39;article_appearance_sub&#38;#39;] == 1) $fullsized = 0;
			if($k_option[&#38;#39;general&#38;#39;][&#38;#39;article_appearance_sub&#38;#39;] == 2) $fullsized = 10000;
			if($k_option[&#38;#39;general&#38;#39;][&#38;#39;article_appearance_sub&#38;#39;] == 3) $fullsized = $k_option[&#38;#39;general&#38;#39;][&#38;#39;article_appearance&#38;#39;];;
		}

		$negative_cats = preg_replace(&#38;quot;!(\d)+!&#38;quot;,&#38;quot;-${0}$0&#38;quot;, $k_option[&#38;#39;mainpage&#38;#39;][&#38;#39;main_cat_final&#38;#39;]);
		$smallsized = 1;

		$additional_loop = new WP_Query(&#38;quot;cat=&#38;quot;.$negative_cats.&#38;quot;&#38;amp;paged=$paged&#38;quot;);

		if ($additional_loop-&#38;gt;have_posts()) :
		while ($additional_loop-&#38;gt;have_posts()) : $additional_loop-&#38;gt;the_post();&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;where 605 is the number of static page I use.&#60;/p&#62;
&#60;p&#62;Good luck.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>katalintamas on "Slider problem with Internet Explorer 9., Windows 7"</title>
			<link>http://www.kriesi.at/support/topic/slider-problem-with-internet-explorer-9-windows-7#post-61410</link>
			<pubDate>Thu, 21 Jun 2012 11:17:26 +0000</pubDate>
			<dc:creator>katalintamas</dc:creator>
			<guid isPermaLink="false">61410@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;What I would like to reproduce with the updated theme is basicly what you can see here - &#60;a href=&#34;http://gerendahaz.hu/&#34; rel=&#34;nofollow&#34;&#62;http://gerendahaz.hu/&#60;/a&#62;  - Slider+Static page+posts. Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>katalintamas on "Slider problem with Internet Explorer 9., Windows 7"</title>
			<link>http://www.kriesi.at/support/topic/slider-problem-with-internet-explorer-9-windows-7#post-61401</link>
			<pubDate>Thu, 21 Jun 2012 10:53:18 +0000</pubDate>
			<dc:creator>katalintamas</dc:creator>
			<guid isPermaLink="false">61401@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dear Devin,&#60;/p&#62;
&#60;p&#62;I have solved one ofe the problems with menu from here: &#60;a href=&#34;http://www.kriesi.at/support/topic/theme-supports-only-one-menu&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/theme-supports-only-one-menu&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Could you help me please to solve my other issue as well?&#60;/p&#62;
&#60;p&#62;Thanks: Katalin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>katalintamas on "Slider problem with Internet Explorer 9., Windows 7"</title>
			<link>http://www.kriesi.at/support/topic/slider-problem-with-internet-explorer-9-windows-7#post-61109</link>
			<pubDate>Wed, 20 Jun 2012 10:17:04 +0000</pubDate>
			<dc:creator>katalintamas</dc:creator>
			<guid isPermaLink="false">61109@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dear Devin,&#60;/p&#62;
&#60;p&#62;thank you very much for your response. &#60;/p&#62;
&#60;p&#62;While I was applying the formerly made changes to the updated theme, I met the above mentioned problems:&#60;/p&#62;
&#60;p&#62;- I do not know how to recreate the upper menu (originally created by Menu Manager Pages)&#60;br /&#62;
- I do not know, why the formerly applied changes do not work with the new homepage of &#60;a href=&#34;http://www.gerendahaz.hu&#34; rel=&#34;nofollow&#34;&#62;http://www.gerendahaz.hu&#60;/a&#62;, where there should be some text (page no 605) and the newest posts below that text.&#60;/p&#62;
&#60;p&#62;What you can see on the &#60;a href=&#34;http://www.gerendahaz.hu&#34; rel=&#34;nofollow&#34;&#62;http://www.gerendahaz.hu&#60;/a&#62; is the old version of Newscast (1.2.2), while at &#60;a href=&#34;http://gerendahaz.hu/images/new-site-1a.jpg&#34; rel=&#34;nofollow&#34;&#62;http://gerendahaz.hu/images/new-site-1a.jpg&#60;/a&#62; you can see what happened when I updated the theme.&#60;/p&#62;
&#60;p&#62;Thank you: Katalin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Slider problem with Internet Explorer 9., Windows 7"</title>
			<link>http://www.kriesi.at/support/topic/slider-problem-with-internet-explorer-9-windows-7#post-61009</link>
			<pubDate>Tue, 19 Jun 2012 19:32:46 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">61009@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Katalin,&#60;/p&#62;
&#60;p&#62;Did you make the change again to the updated theme (the same ones you made in the past). If not, you'll need to re-add them in.&#60;/p&#62;
&#60;p&#62;The site looks a bit different now than in the screenshot, have you made some changes that have fixed any of the issues for you?&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>katalintamas on "Slider problem with Internet Explorer 9., Windows 7"</title>
			<link>http://www.kriesi.at/support/topic/slider-problem-with-internet-explorer-9-windows-7#post-60883</link>
			<pubDate>Tue, 19 Jun 2012 07:11:03 +0000</pubDate>
			<dc:creator>katalintamas</dc:creator>
			<guid isPermaLink="false">60883@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you Devin, &#60;/p&#62;
&#60;p&#62;I am just doing what you recommended, I see it will work.&#60;/p&#62;
&#60;p&#62;I have minor problems while updating for the new version, see &#60;a href=&#34;http://gerendahaz.hu/images/new-site-1a.jpg&#34; rel=&#34;nofollow&#34;&#62;http://gerendahaz.hu/images/new-site-1a.jpg&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;First of all, my upper menu (originally created by Menu Manager Pages) lost and a repeated version of the Main Menu appeared instead.&#60;/p&#62;
&#60;p&#62;Secondly, I need a static site as a homepage, and some Posts below that. I have made the original change in index.php as you recommended a year ago:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$additional_loop = new WP_Query(&#38;quot;cat=&#38;quot;.$negative_cats.&#38;quot;&#38;amp;paged=$paged&#38;quot;);&#60;/code&#62;&#60;br /&#62;
change it to:&#60;br /&#62;
&#60;code&#62;$additional_loop = new WP_Query(&#38;quot;page_id=605&#38;quot;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;However, now below the slider it seems to be a post instead of a page with all the Date, Comments, Author, and Read more things which I do not need and no Posts below that.&#60;/p&#62;
&#60;p&#62;Thanks a lot: Katalin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Slider problem with Internet Explorer 9., Windows 7"</title>
			<link>http://www.kriesi.at/support/topic/slider-problem-with-internet-explorer-9-windows-7#post-60774</link>
			<pubDate>Mon, 18 Jun 2012 17:55:15 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">60774@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Katalin,&#60;/p&#62;
&#60;p&#62;I think there was a fix for this in one of the past updates. It looks like you are running 1.2.2 and updating to the most recent version from Themeforest should get the images loading in IE9 properly.&#60;/p&#62;
&#60;p&#62;You'll just need to download the theme folder from your downloads on Themeforest and then install the theme in the same way you first did. If you've made any modifications to the theme files themselves, you'll want to save backups of those specific files so that you can re-apply the customization's after the update.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>katalintamas on "Slider problem with Internet Explorer 9., Windows 7"</title>
			<link>http://www.kriesi.at/support/topic/slider-problem-with-internet-explorer-9-windows-7#post-60736</link>
			<pubDate>Mon, 18 Jun 2012 15:28:54 +0000</pubDate>
			<dc:creator>katalintamas</dc:creator>
			<guid isPermaLink="false">60736@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello Dear Kriesi,&#60;br /&#62;
would you be so kind and take a look at &#60;a href=&#34;http://www.gerendahaz.hu?&#34; rel=&#34;nofollow&#34;&#62;http://www.gerendahaz.hu?&#60;/a&#62; When visiting this site with Internet Explorer 9 and Windows 7, most of the times the slider of the homepage cannot load the images.&#60;br /&#62;
What could be the problem and how could I solve it?&#60;br /&#62;
Thanks a lot: Katalin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lcontheroad on "Slider + Static homepage"</title>
			<link>http://www.kriesi.at/support/topic/slider-static-homepage#post-10175</link>
			<pubDate>Mon, 13 Dec 2010 15:25:51 +0000</pubDate>
			<dc:creator>lcontheroad</dc:creator>
			<guid isPermaLink="false">10175@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'm also having the same problem as Boomsite - need a static home page but want the slider to show too. Got SO excited when I saw the code switch above but haven't been able to get it to work. I tried the page id and also the full absolute address to my desired page in both occurrences of &#34;$additional_loop = new WP_Query&#34; but still posts show on the home page rather than a static page. If I set &#34;static page&#34; to my desired page, I lose the slider. Please help...!!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jkwalls on "Slider + Static homepage"</title>
			<link>http://www.kriesi.at/support/topic/slider-static-homepage#post-7914</link>
			<pubDate>Thu, 28 Oct 2010 16:08:51 +0000</pubDate>
			<dc:creator>jkwalls</dc:creator>
			<guid isPermaLink="false">7914@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi I'm having the same problem as Boomsite. &#60;/p&#62;
&#60;p&#62;I found the code and replaced it but it still wont show up on a static homepage. For this I tried a couple diffrent things I tried it with the settings in settings - reading to a static homepage and the same one I wanted, as well as tried leave it with out this setting on. &#60;/p&#62;
&#60;p&#62;The static homepage will show up but my accordian slider wont. when you say page ID is 10. what do you mean by this, the title or the page order (of which i tried both), I also tried chainging the 10 in the index.php to &#34;index.php&#34; or &#34;index&#34;. But I cant seem to find away to get it to work.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Boomsite on "Slider + Static homepage"</title>
			<link>http://www.kriesi.at/support/topic/slider-static-homepage#post-6649</link>
			<pubDate>Thu, 14 Oct 2010 10:23:27 +0000</pubDate>
			<dc:creator>Boomsite</dc:creator>
			<guid isPermaLink="false">6649@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I'm also trying to achieve a static front page that keeps the slider, but I'm having some trouble getting it to work.&#60;/p&#62;
&#60;p&#62;I've edited the line of code in index.php as described above. I got the page id from the URL when I chose to edit the page I want to use. Example: /wp-admin/post.php?post=32&#38;amp;action=edit&#60;/p&#62;
&#60;p&#62;This results in a front page with a slider, and an error under that reading:&#60;/p&#62;
&#60;p&#62;&#34;Nothing Found&#60;br /&#62;
Sorry, no posts matched your criteria&#34;&#60;/p&#62;
&#60;p&#62;Have I got the wrong page ID?&#60;/p&#62;
&#60;p&#62;Appreciate your help!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>katalintamas on "Slider + Static homepage"</title>
			<link>http://www.kriesi.at/support/topic/slider-static-homepage#post-3386</link>
			<pubDate>Tue, 24 Aug 2010 09:31:43 +0000</pubDate>
			<dc:creator>katalintamas</dc:creator>
			<guid isPermaLink="false">3386@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks a lot!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>James Morrison on "Slider + Static homepage"</title>
			<link>http://www.kriesi.at/support/topic/slider-static-homepage#post-2963</link>
			<pubDate>Tue, 17 Aug 2010 14:42:53 +0000</pubDate>
			<dc:creator>James Morrison</dc:creator>
			<guid isPermaLink="false">2963@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;The frontpage was never designed with the slider and a static page as an option, nevertheless you can modify index.php to show a page instead of the posts.&#60;/p&#62;
&#60;p&#62;Open up index.php and find this code:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$additional_loop = new WP_Query(&#38;quot;cat=&#38;quot;.$negative_cats.&#38;quot;&#38;amp;paged=$paged&#38;quot;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;change it to:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$additional_loop = new WP_Query(&#38;quot;page_id=10&#38;quot;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;where page_id matches the ID of the page you want to display (in the above code '10').
&#60;/p&#62;</description>
		</item>
		<item>
			<title>katalintamas on "Slider + Static homepage"</title>
			<link>http://www.kriesi.at/support/topic/slider-static-homepage#post-2859</link>
			<pubDate>Mon, 16 Aug 2010 06:24:37 +0000</pubDate>
			<dc:creator>katalintamas</dc:creator>
			<guid isPermaLink="false">2859@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;br /&#62;
could anyone help me please? I would really appreciate, thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>katalintamas on "Slider + Static homepage"</title>
			<link>http://www.kriesi.at/support/topic/slider-static-homepage#post-2778</link>
			<pubDate>Sat, 14 Aug 2010 08:01:42 +0000</pubDate>
			<dc:creator>katalintamas</dc:creator>
			<guid isPermaLink="false">2778@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
I absolutely enjoy this support forum, it helped me a lot. Even though there are two topics about static homapages, I could not find the solution to my problem:&#60;/p&#62;
&#60;p&#62;I would like to display the accordion slider AND a Static Page - &#60;a href=&#34;http://beregszaszi-gerendahaz.hu/gerendahaz/&#34; rel=&#34;nofollow&#34;&#62;http://beregszaszi-gerendahaz.hu/gerendahaz/&#60;/a&#62; - on my homepage: &#60;a href=&#34;http://beregszaszi-gerendahaz.hu&#34; rel=&#34;nofollow&#34;&#62;http://beregszaszi-gerendahaz.hu&#60;/a&#62; &#60;/p&#62;
&#60;p&#62;How would I do that? If I just set WP to display a static homepage, there is no slider....&#60;/p&#62;
&#60;p&#62;Thanks a lot!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>OwenDevelopment on "Add link to footer pictures"</title>
			<link>http://www.kriesi.at/support/topic/add-link-to-footer-pictures#post-1814</link>
			<pubDate>Tue, 03 Aug 2010 13:32:16 +0000</pubDate>
			<dc:creator>OwenDevelopment</dc:creator>
			<guid isPermaLink="false">1814@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;No probs...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>James Morrison on "Add link to footer pictures"</title>
			<link>http://www.kriesi.at/support/topic/add-link-to-footer-pictures#post-1811</link>
			<pubDate>Tue, 03 Aug 2010 13:20:13 +0000</pubDate>
			<dc:creator>James Morrison</dc:creator>
			<guid isPermaLink="false">1811@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; @OwenDevelo Thanks for helping out! &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
James
&#60;/p&#62;</description>
		</item>
		<item>
			<title>katalintamas on "Add link to footer pictures"</title>
			<link>http://www.kriesi.at/support/topic/add-link-to-footer-pictures#post-1783</link>
			<pubDate>Tue, 03 Aug 2010 10:43:43 +0000</pubDate>
			<dc:creator>katalintamas</dc:creator>
			<guid isPermaLink="false">1783@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;GREAT, thanks for your help, OwenDevelo!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>OwenDevelopment on "Add link to footer pictures"</title>
			<link>http://www.kriesi.at/support/topic/add-link-to-footer-pictures#post-1764</link>
			<pubDate>Tue, 03 Aug 2010 08:40:33 +0000</pubDate>
			<dc:creator>OwenDevelopment</dc:creator>
			<guid isPermaLink="false">1764@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I see.  We need to line the text on the right up with the image on the left.&#60;/p&#62;
&#60;p&#62;go back to the original code and just add the links in:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;p class=&#38;quot;small_block&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;http://beregszaszi-gerendahaz.hu/wp-content/uploads/2010/08/kivet.pdf&#38;quot;&#38;gt;&#38;lt;img class=&#38;quot;ie6fix noborder alignleft&#38;quot; src=&#38;quot;&#38;lt;?php echo bloginfo(&#38;#39;template_url&#38;#39;); ?&#38;gt;/images/skin1/kivet-logo.png&#38;quot; alt=&#38;quot;Kiváló Építési Termék&#38;quot;&#38;gt;&#38;lt;/a&#38;gt;A Beregszászi-Trade Kft. rendelkezik Kiváló Építési Termék tanúsító védjeggyel.&#38;lt;/p&#38;gt;&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>katalintamas on "Add link to footer pictures"</title>
			<link>http://www.kriesi.at/support/topic/add-link-to-footer-pictures#post-1760</link>
			<pubDate>Tue, 03 Aug 2010 06:07:37 +0000</pubDate>
			<dc:creator>katalintamas</dc:creator>
			<guid isPermaLink="false">1760@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks, that is all right. I tried and the link is working but I lost all the formatting: &#60;a href=&#34;http://beregszaszi-gerendahaz.hu&#34; rel=&#34;nofollow&#34;&#62;http://beregszaszi-gerendahaz.hu&#60;/a&#62;. My code looks like &#60;code&#62;&#38;lt;p class=&#38;quot;small_block&#38;quot;&#38;gt;&#38;lt;img class=&#38;quot;ie6fix noborder alignleft&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;http://beregszaszi-gerendahaz.hu/wp-content/uploads/2010/08/kivet.pdf&#38;quot;&#38;gt;&#38;lt;img src=&#38;quot;http://beregszaszi-gerendahaz.hu/wp-content/themes/newscast/images/skin1/kivet-logo.png&#38;quot; alt=&#38;quot;Kiváló Építési Termék&#38;quot; /&#38;gt;&#38;lt;/a&#38;gt;A Beregszászi-Trade Kft. rendelkezik Kiváló Építési Termék tanúsító védjeggyel.&#38;lt;/p&#38;gt;&#60;/code&#62;&#60;br /&#62;
What did I do wrong? Thanks again and sorry for disturbing you with this simple thing which is not obvious for me...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>OwenDevelopment on "Add link to footer pictures"</title>
			<link>http://www.kriesi.at/support/topic/add-link-to-footer-pictures#post-1706</link>
			<pubDate>Mon, 02 Aug 2010 14:22:06 +0000</pubDate>
			<dc:creator>OwenDevelopment</dc:creator>
			<guid isPermaLink="false">1706@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi there,&#60;/p&#62;
&#60;p&#62;This is simple HTML.&#60;/p&#62;
&#60;p&#62;For example, your current image is: &#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;img alt=&#38;quot;ÉMI logó&#38;quot; src=&#38;quot;http://beregszaszi-gerendahaz.hu/wp-content/themes/newscast/images/skin1/emi-logo.jpg&#38;quot; /&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;To add a link to it, you would change it to:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;a href=&#38;quot;http://WWW.LINKHERE.COM&#38;quot;&#38;gt;&#38;lt;img src=&#38;quot;http://beregszaszi-gerendahaz.hu/wp-content/themes/newscast/images/skin1/emi-logo.jpg&#38;quot; alt=&#38;quot;ÉMI logó&#38;quot; /&#38;gt;&#38;lt;/a&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;The Kivet logo for your pdf would be:&#60;br /&#62;
&#60;code&#62;&#38;lt;a href=&#38;quot;http://beregszaszi-gerendahaz.hu/wp-content/uploads/2010/08/kivet.pdf&#38;quot;&#38;gt;&#38;lt;img src=&#38;quot;http://beregszaszi-gerendahaz.hu/wp-content/themes/newscast/images/skin1/kivet-logo.png&#38;quot; alt=&#38;quot;Kiváló Építési Termék&#38;quot; /&#38;gt;&#38;lt;/a&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;The last one above, will then appear like:&#60;br /&#62;
&#60;a href=&#34;http://beregszaszi-gerendahaz.hu/wp-content/uploads/2010/08/kivet.pdf&#34;&#62;&#60;img src=&#34;http://beregszaszi-gerendahaz.hu/wp-content/themes/newscast/images/skin1/kivet-logo.png&#34; alt=&#34;Kiváló Építési Termék&#34; /&#62;&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Try that.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>katalintamas on "Add link to footer pictures"</title>
			<link>http://www.kriesi.at/support/topic/add-link-to-footer-pictures#post-1701</link>
			<pubDate>Mon, 02 Aug 2010 12:59:20 +0000</pubDate>
			<dc:creator>katalintamas</dc:creator>
			<guid isPermaLink="false">1701@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Kriesi,&#60;br /&#62;
it's great that you have a searchable forum instead of Themeforest's.&#60;br /&#62;
However, I could not find the answer to my question: how could I add a link to the little logos in my footer at &#60;a href=&#34;http://beregszaszi-gerendahaz.hu/?&#34; rel=&#34;nofollow&#34;&#62;http://beregszaszi-gerendahaz.hu/?&#60;/a&#62; At the moment the code for one of them looks like: &#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;p class=&#38;quot;small_block&#38;quot;&#38;gt;&#38;lt;img class=&#38;quot;ie6fix noborder alignleft&#38;quot; src=&#38;quot;&#38;lt;?php echo bloginfo(&#38;#39;template_url&#38;#39;); ?&#38;gt;/images/skin1/kivet-logo.png&#38;quot; alt=&#38;quot;Kiváló Építési Termék&#38;quot; /&#38;gt;A Beregszászi-Trade Kft. rendelkezik Kiváló Építési Termék tanúsító védjeggyel.&#38;lt;/p&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Where should I put and what in order to link the logo picture (kivet-logo.png) to a pdf at &#60;a href=&#34;http://beregszaszi-gerendahaz.hu/wp-content/uploads/2010/08/kivet.pdf&#34; rel=&#34;nofollow&#34;&#62;http://beregszaszi-gerendahaz.hu/wp-content/uploads/2010/08/kivet.pdf&#60;/a&#62; ?&#60;/p&#62;
&#60;p&#62;Thanks a lot!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
