<?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: Additional Row of of small boxes on home page</title>
		<link>http://www.kriesi.at/support/topic/additional-row-of-of-small-boxes-on-home-page</link>
		<description>Support Forum - Topic: Additional Row of of small boxes on home page</description>
		<language>en-US</language>
		<pubDate>Tue, 21 May 2013 10:20:26 +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/additional-row-of-of-small-boxes-on-home-page" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Additional Row of of small boxes on home page"</title>
			<link>http://www.kriesi.at/support/topic/additional-row-of-of-small-boxes-on-home-page#post-12571</link>
			<pubDate>Wed, 09 Feb 2011 06:40:17 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">12571@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Currently this is not possible. I'm sorry...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>banffair on "Additional Row of of small boxes on home page"</title>
			<link>http://www.kriesi.at/support/topic/additional-row-of-of-small-boxes-on-home-page#post-12563</link>
			<pubDate>Wed, 09 Feb 2011 06:11:47 +0000</pubDate>
			<dc:creator>banffair</dc:creator>
			<guid isPermaLink="false">12563@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Wonderful. Thank you so much for the quick and detailed responses. This is working perfectly. One last thing. Would it be possible to have four columns on the bottom row and three across the top? Just a thought for the future.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Additional Row of of small boxes on home page"</title>
			<link>http://www.kriesi.at/support/topic/additional-row-of-of-small-boxes-on-home-page#post-12522</link>
			<pubDate>Tue, 08 Feb 2011 08:40:56 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">12522@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
open up functions.php and after this code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if ( function_exists(&#38;#39;register_sidebar&#38;#39;) )
	register_sidebar(array(
		&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;Frontpage Box3&#38;#39;,
		&#38;#39;before_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;div id=&#38;quot;%1$s&#38;quot; class=&#38;quot;small_box box3 widget %2$s&#38;quot;&#38;gt;&#38;lt;span class=&#38;quot;meta&#38;quot;&#38;gt;&#38;lt;/span&#38;gt;&#38;#39;,
	&#38;#39;after_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;/div&#38;gt;&#38;#39;,
	&#38;#39;before_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;h3 class=&#38;quot;widgettitle&#38;quot;&#38;gt;&#38;#39;,
	&#38;#39;after_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;/h3&#38;gt;&#38;#39;,
	));&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;add new widget functions for your other boxes. Replace Box3 (2 times) with your box number so it looks like: &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if ( function_exists(&#38;#39;register_sidebar&#38;#39;) )
	register_sidebar(array(
		&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;Frontpage Box4&#38;#39;,
		&#38;#39;before_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;div id=&#38;quot;%1$s&#38;quot; class=&#38;quot;small_box box4 widget %2$s&#38;quot;&#38;gt;&#38;lt;span class=&#38;quot;meta&#38;quot;&#38;gt;&#38;lt;/span&#38;gt;&#38;#39;,
	&#38;#39;after_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;/div&#38;gt;&#38;#39;,
	&#38;#39;before_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;h3 class=&#38;quot;widgettitle&#38;quot;&#38;gt;&#38;#39;,
	&#38;#39;after_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;/h3&#38;gt;&#38;#39;,
	));

if ( function_exists(&#38;#39;register_sidebar&#38;#39;) )
	register_sidebar(array(
		&#38;#39;name&#38;#39; =&#38;gt; &#38;#39;Frontpage Box5&#38;#39;,
		&#38;#39;before_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;div id=&#38;quot;%1$s&#38;quot; class=&#38;quot;small_box box5 widget %2$s&#38;quot;&#38;gt;&#38;lt;span class=&#38;quot;meta&#38;quot;&#38;gt;&#38;lt;/span&#38;gt;&#38;#39;,
	&#38;#39;after_widget&#38;#39; =&#38;gt; &#38;#39;&#38;lt;/div&#38;gt;&#38;#39;,
	&#38;#39;before_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;h3 class=&#38;quot;widgettitle&#38;quot;&#38;gt;&#38;#39;,
	&#38;#39;after_title&#38;#39; =&#38;gt; &#38;#39;&#38;lt;/h3&#38;gt;&#38;#39;,
	));&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>banffair on "Additional Row of of small boxes on home page"</title>
			<link>http://www.kriesi.at/support/topic/additional-row-of-of-small-boxes-on-home-page#post-12512</link>
			<pubDate>Tue, 08 Feb 2011 06:53:03 +0000</pubDate>
			<dc:creator>banffair</dc:creator>
			<guid isPermaLink="false">12512@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;This is great. Thanks for the help. I'm trying to use a widget in the box and can't seem to get the widget option to show up in the widgets wordpress admin page. Any ideas on how to get this to show. Otherwise it seems to be working perfectly. Thanks for the help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Additional Row of of small boxes on home page"</title>
			<link>http://www.kriesi.at/support/topic/additional-row-of-of-small-boxes-on-home-page#post-12403</link>
			<pubDate>Sat, 05 Feb 2011 09:10:04 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">12403@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
the best way to add new boxes is to edit index.php manually. At the moment you can find following code line in it:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$runs = 3;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Change 3 to an higher value (to the number of boxes you want to display). Then you need to change following code line in mainpage.php:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php $columns = 3;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;set $columns to the same value you chose for $runs &#60;/p&#62;
&#60;p&#62;Now you can set posts, pages, etc. as mainpage content under Twicet Options &#38;gt; Mainpage Options. &#60;/p&#62;
&#60;p&#62;If you want to adjust the width of each box individually just add following code style.css:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#top .box1{
width: 200px
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Of course you need to adjust .box1 to the number of your box (i.e. the fourth box would look like .box4). You can adjust the width value as you like.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>banffair on "Additional Row of of small boxes on home page"</title>
			<link>http://www.kriesi.at/support/topic/additional-row-of-of-small-boxes-on-home-page#post-12390</link>
			<pubDate>Fri, 04 Feb 2011 19:22:32 +0000</pubDate>
			<dc:creator>banffair</dc:creator>
			<guid isPermaLink="false">12390@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Just wondering if it would be possible to add an extra row of small boxes on the index page? I'd like to be able to feature six different areas. Thanks for your help.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
