<?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: Main Page Column Images</title>
		<link>http://www.kriesi.at/support/topic/main-page-column-images</link>
		<description>Support Forum - Topic: Main Page Column Images</description>
		<language>en-US</language>
		<pubDate>Sun, 26 May 2013 07:24:13 +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/main-page-column-images" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Beard on "Main Page Column Images"</title>
			<link>http://www.kriesi.at/support/topic/main-page-column-images#post-28023</link>
			<pubDate>Tue, 27 Sep 2011 22:02:12 +0000</pubDate>
			<dc:creator>Chris Beard</dc:creator>
			<guid isPermaLink="false">28023@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad Dude could help :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>AlexMayle on "Main Page Column Images"</title>
			<link>http://www.kriesi.at/support/topic/main-page-column-images#post-28019</link>
			<pubDate>Tue, 27 Sep 2011 21:41:00 +0000</pubDate>
			<dc:creator>AlexMayle</dc:creator>
			<guid isPermaLink="false">28019@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you, worked perfectly!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Main Page Column Images"</title>
			<link>http://www.kriesi.at/support/topic/main-page-column-images#post-27921</link>
			<pubDate>Tue, 27 Sep 2011 05:13:15 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">27921@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;The code dictating the image path and size is commented out. Replace this code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$placeholder_image1 = get_bloginfo(&#38;#39;template_url&#38;#39;).&#38;#39;/files/medium1.jpg&#38;#39;;
#$placeholder_image2 = get_bloginfo(&#38;#39;template_url&#38;#39;).&#38;#39;/files/medium2.jpg&#38;#39;;
#$placeholder_image3 = get_bloginfo(&#38;#39;template_url&#38;#39;).&#38;#39;/files/medium3.jpg&#38;#39;;

$placeholder_image1 = kriesi_build_image(array(&#38;#39;url&#38;#39;=&#38;gt;$placeholder_image1,&#38;#39;height&#38;#39;=&#38;gt;&#38;#39;124&#38;#39;,&#38;#39;width&#38;#39;=&#38;gt;&#38;#39;280&#38;#39;));
#$placeholder_image2 = kriesi_build_image(array(&#38;#39;url&#38;#39;=&#38;gt;$placeholder_image2,&#38;#39;height&#38;#39;=&#38;gt;&#38;#39;124&#38;#39;,&#38;#39;width&#38;#39;=&#38;gt;&#38;#39;280&#38;#39;));
#$placeholder_image3 = kriesi_build_image(array(&#38;#39;url&#38;#39;=&#38;gt;$placeholder_image3,&#38;#39;height&#38;#39;=&#38;gt;&#38;#39;124&#38;#39;,&#38;#39;width&#38;#39;=&#38;gt;&#38;#39;280&#38;#39;));&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$placeholder_image1 = get_bloginfo(&#38;#39;template_url&#38;#39;).&#38;#39;/files/medium1.jpg&#38;#39;;
$placeholder_image2 = get_bloginfo(&#38;#39;template_url&#38;#39;).&#38;#39;/files/medium2.jpg&#38;#39;;
$placeholder_image3 = get_bloginfo(&#38;#39;template_url&#38;#39;).&#38;#39;/files/medium3.jpg&#38;#39;;

$placeholder_image1 = kriesi_build_image(array(&#38;#39;url&#38;#39;=&#38;gt;$placeholder_image1,&#38;#39;height&#38;#39;=&#38;gt;&#38;#39;124&#38;#39;,&#38;#39;width&#38;#39;=&#38;gt;&#38;#39;280&#38;#39;));
$placeholder_image2 = kriesi_build_image(array(&#38;#39;url&#38;#39;=&#38;gt;$placeholder_image2,&#38;#39;height&#38;#39;=&#38;gt;&#38;#39;124&#38;#39;,&#38;#39;width&#38;#39;=&#38;gt;&#38;#39;280&#38;#39;));
$placeholder_image3 = kriesi_build_image(array(&#38;#39;url&#38;#39;=&#38;gt;$placeholder_image3,&#38;#39;height&#38;#39;=&#38;gt;&#38;#39;124&#38;#39;,&#38;#39;width&#38;#39;=&#38;gt;&#38;#39;280&#38;#39;));&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$placeholder[2] = $placeholder_image1&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$placeholder[2] = $placeholder_image2&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$placeholder[3] = $placeholder_image1&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;with:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$placeholder[3] = $placeholder_image3&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Save and upload the modified index.php - all 3 images should display properly afterwards.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>AlexMayle on "Main Page Column Images"</title>
			<link>http://www.kriesi.at/support/topic/main-page-column-images#post-27913</link>
			<pubDate>Mon, 26 Sep 2011 21:37:49 +0000</pubDate>
			<dc:creator>AlexMayle</dc:creator>
			<guid isPermaLink="false">27913@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Well that is what I'm doing for the text, but like I said one of the problems I'm experiencing is with the images. &#60;/p&#62;
&#60;p&#62;Every time I put an image that replaces the default one into one of the columns the other 2 columns apply the same image. &#60;/p&#62;
&#60;p&#62;I want all 3 columns to have different pictures. How do I do that? (without using the page preview image solution, because that would require me to populate the columns using &#34;pages&#34;, and therefor I could not edit the text.)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Main Page Column Images"</title>
			<link>http://www.kriesi.at/support/topic/main-page-column-images#post-27824</link>
			<pubDate>Mon, 26 Sep 2011 07:08:08 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">27824@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
you need to modify index.php to enter your &#34;default html text&#34;. Afterwards go to Display Options &#38;gt; Mainpage Options and select &#34;HTML&#34; for all 3 columns.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>AlexMayle on "Main Page Column Images"</title>
			<link>http://www.kriesi.at/support/topic/main-page-column-images#post-27790</link>
			<pubDate>Sun, 25 Sep 2011 22:36:27 +0000</pubDate>
			<dc:creator>AlexMayle</dc:creator>
			<guid isPermaLink="false">27790@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;When I go into index.php and change the image of one of the columns the other columns do the exact same thing. &#60;/p&#62;
&#60;p&#62;I don't want to populate the columns with pages either, because I want different text under the images, not the text that happens to be on the page the column is previewing. &#60;/p&#62;
&#60;p&#62;So how can I populate the columns using the &#34;default html&#34; so I can edit it manually while being able to have 3 different images?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
