<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>gooos.nl &#187; themes</title>
	<atom:link href="http://golabs.nl/cat/projects/wordpress/themes/feed/" rel="self" type="application/rss+xml" />
	<link>http://golabs.nl</link>
	<description></description>
	<lastBuildDate>Sun, 15 Jan 2012 20:28:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-alpha-19704</generator>
		<item>
		<title>K2 now at v1.0</title>
		<link>http://golabs.nl/2009/10433/</link>
		<comments>http://golabs.nl/2009/10433/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 20:31:57 +0000</pubDate>
		<dc:creator>gooos</dc:creator>
				<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://golabs.nl/?p=10433</guid>
		<description><![CDATA[Today at 20:49 CET, Michael Heilemann announced in revision 894 that the K2 theme has now reached the v1.0 mark. Hereby my congratulations to the K2 team and keep up the good work guys!! I have seen many interesting changes in the last couple of days I&#8217;m going to explore ;) Read more on the [...]]]></description>
			<content:encoded><![CDATA[<p>Today at 20:49 CET, Michael Heilemann announced in <a title="K2 now v1.0" href="http://code.google.com/p/kaytwo/source/detail?r=894" target="_blank">revision 894</a> that the <a title="K2" href="http://getk2.com" target="_blank">K2 theme</a> has now reached the v1.0 mark. Hereby my congratulations to the K2 team and keep up the good work guys!! I have seen many interesting changes in the last couple of days I&#8217;m going to explore ;)</p>
<p>Read more on the 1.0 release <a title="K2 1.0" href="http://getk2.com/2009/12/k2-1-0/" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://golabs.nl/2009/10433/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>K2: Full Height</title>
		<link>http://golabs.nl/2009/10350/</link>
		<comments>http://golabs.nl/2009/10350/#comments</comments>
		<pubDate>Sun, 11 Jan 2009 16:23:03 +0000</pubDate>
		<dc:creator>gooos</dc:creator>
				<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://golabs.nl/?p=10350</guid>
		<description><![CDATA[Imagine. You are using the K2 theme for WordPress and you want your design to be a full height design. Your first thought is probably that you only need to change some bits and pieces in the CSS and your done, right?! Ok &#8211; it&#8217;s almost that easy but in the end it took me [...]]]></description>
			<content:encoded><![CDATA[<p>Imagine. You are using the K2 theme for WordPress and you want your design to be a full height design. Your first thought is probably that you only need to change some bits and pieces in the CSS and your done, right?!</p>
<p>Ok &#8211; it&#8217;s almost that easy but in the end it took me quite a while to find the proper solution for pages with very little content on it&#8230; So to save you the same hassle &#8211; here is a how to. I would suggest you add the CSS code to a custom style stylesheet rather than modifying the style.css to keep things easy when upgrading K2.</p>
<p><strong>Step 1: footer.php</strong><br />
Before we start with the required CSS code we need to make a slight adjustment to the footer.php to ensure that the footer div is included in the page div which acts as the wrapper div.</p>
<p>Move this line:</p>
<pre class="brush: php; first-line: 4; title: ; notranslate">
&lt;/div&gt; &lt;!-- Close Page --&gt;
</pre>
<p>Towards the bottom, right before this line:</p>
<pre class="brush: php; first-line: 42; title: ; notranslate">
&lt;?php wp_footer(); ?&gt;
</pre>
<p><strong>Step 2: make html and body both 100% in height<br />
</strong></p>
<pre class="brush: css; title: ; notranslate">
html, body {
 height: 100%;
 }
</pre>
<p><strong>Step 3: adjustments to #page</strong></p>
<pre class="brush: css; title: ; notranslate">
#page {
 padding-top: 0;
 border-bottom: none;
 height: auto !important;
 height: 100%;
 min-height: 100%;
 }
</pre>
<p><strong>Step 4: adjustments to #header</strong></p>
<pre class="brush: css; title: ; notranslate">
#header {
 border-top:  20px solid #fff;
 }
</pre>
<p><strong>Step 5: adjustments to .content</strong></p>
<pre class="brush: css; title: ; notranslate">
.content {
 padding: 0 20px 62px;
 }
</pre>
<p><strong>Step 6: adjustments to #footer</strong></p>
<pre class="brush: css; title: ; notranslate">
#footer {
 padding: 10px 0 10px;
 position: absolute;
 bottom: 0;
 width: 100%;
 }
</pre>
<p><strong>Final action</strong></p>
<p>Ok, that&#8217;s basically it although you now need to check if some values need to be changed or not. I have changed the padding of the footer (see step 6) to 10px for both the top and the bottom. With these padding values I need a padding value of 62px for the bottom in the content div (see step 5).</p>
<p>Tip: to see how much you need for the bottom padding in step 5 is to add a background color to the footer and then make a screenshot. In, for example, Photoshop you can then easily get the height of the footer. Just a few more pixels to that as a spacing between the content and the footer and you are all set.</p>
<p><em>Tested with K2 r743 with FF3, IE6, and IE7.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://golabs.nl/2009/10350/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

