<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>WP Maven</title>
	
	<link>http://wpmaven.com</link>
	<description>Just another  weblog</description>
	<pubDate>Tue, 19 Aug 2008 20:58:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/WpMaven" type="application/rss+xml" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>Hello world!</title>
		<link>http://wpmaven.com/2008/08/19/hello-world/</link>
		<comments>http://wpmaven.com/2008/08/19/hello-world/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 20:58:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false" />
		<description><![CDATA[Welcome to Wpmaven.com. This is your first post. Edit or delete it, then start blogging!
]]></description>
			<content:encoded><![CDATA[<p>Welcome to <a href="http://wpmaven.com/">Wpmaven.com</a>. This is your first post. Edit or delete it, then start blogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://wpmaven.com/2008/08/19/hello-world/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Customizing Your WordPress Theme Footer Using Dynamic Sidebars</title>
		<link>http://wpmaven.com/2008/06/30/customizing-your-wordpress-theme-footer-using-dynamic-sidebars/</link>
		<comments>http://wpmaven.com/2008/06/30/customizing-your-wordpress-theme-footer-using-dynamic-sidebars/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 16:00:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Customizing Theme]]></category>

		<category><![CDATA[WordPress Tutorial]]></category>

		<guid isPermaLink="false">http://www.wpmaven.com/?p=7</guid>
		<description><![CDATA[This was first published on Open Source Maven on October 10, 2007.
I&#8217;m so excited! I just can&#8217;t hide it! {Imagine Pointer Sisters singing}
Lorelle on WordPress wrote &#8220;Customizing Your WordPress Theme Footer&#8221; back on September 30th. She gave some great examples on how to customize and use the footer of your theme for more than just [...]]]></description>
			<content:encoded><![CDATA[<p>This was first published on <a title="Open Source Maven" href="http://opensourcemaven.com" target="_blank">Open Source Maven</a> on October 10, 2007.</p>
<p>I&#8217;m so excited! I just can&#8217;t hide it! {Imagine Pointer Sisters singing}</p>
<p><a title="Lorelle on WordPress" href="http://lorelle.wordpress.com" target="_blank">Lorelle on WordPress</a> wrote &#8220;<a title="Customizing your wordpress theme footer" href="http://lorelle.wordpress.com/2007/09/30/customizing-your-wordpress-theme-footer/" target="_blank">Customizing Your WordPress Theme Footer</a>&#8221; back on September 30th. She gave some great examples on how to customize and use the footer of your theme for more than just a basic link back to WordPress. I thought of a different way and I&#8217;ve just figured out all the code you&#8217;d need to add to give you 2 columns at the bottom (actually outside of your technical footer div). I&#8217;ve done it here, so if you scroll to the bottom, you will see a red border on the left and a green border on the right. Here&#8217;s the code and references to the files you add them to for the <a title="Get K2" href="http://getk2.com/" target="_blank">K2 theme</a>. You may be able to use this on other themes as well, but K2 is what I&#8217;m using here.</p>
<p><span id="more-10"></span></p>
<p>You will find the functions.php file inside the K2 Theme directory. If your theme does not have a functions.php file, create a text file with the code I&#8217;m sharing here and save it as functions.php. This code is pieced together courtesy of <a title="Widgetizing Themes" href="http://automattic.com/code/widgets/themes/" target="_blank">Automattic&#8217;s Widgetizing Themes article</a>.</p>
<p><strong>Add to functions.php:</strong></p>
<pre>&lt;?php</pre>
<pre>if ( function_exists('register_sidebar') )</pre>
<pre>    register_sidebars(4,array(</pre>
<pre>        'before_widget' =&gt; '',</pre>
<pre>        'after_widget' =&gt; '',</pre>
<pre>        'before_title' =&gt; '&lt;h4&gt;',</pre>
<pre>        'after_title' =&gt; '&lt;/h4&gt;',</pre>
<pre>    ));</pre>
<pre>?&gt;</pre>
<p>Notes: The number 4 is the total number of sidebars I&#8217;m using here, but because I only want the main content column and 1 right sidebar (sidebar #1), sidebar #2 is hidden. If I do add a widget to sidebar #2, it will display inline with sidebar #1. This is due to the way K2 is setup. If I change the layout options in K2 to have 3 columns, then sidebar #1 and sidebar #2 will display on either side of the main content column. The h4 tags for before and after the title are so it will pick up the styles in the default K2 style sheet. You may adjust this if you want.</p>
<p>In your theme folder, you will want to locate the footer.php file. Most likely you will see something along the lines of &lt;div id=&#8221;footer&#8221;&gt; {some various code and text} &lt;/div&gt; &#8212; you will want to put the following before that &lt;div&gt;. I put the following information right after the &lt;div class=&#8221;clear&#8221;&gt;&lt;/div&gt; (first line) which is what you&#8217;ll see in the K2 theme.</p>
<p><strong>Add to footer.php:</strong></p>
<pre>&lt;div id="bottom" class="secondary"&gt;</pre>
<pre>   &lt;div id="bottom1"&gt;</pre>
<pre>     &lt;?php if ( !function_exists('dynamic_sidebar')</pre>
<pre>      || !dynamic_sidebar(3) ) : ?&gt;</pre>
<pre>         &lt;p&gt;Dynamic Sidebar 3 not working.&lt;/p&gt;</pre>
<pre>     &lt;?php endif; ?&gt;</pre>
<pre>   &lt;/div&gt;</pre>
<pre>   &lt;div id="bottom2"&gt;</pre>
<pre>     &lt;?php if ( !function_exists('dynamic_sidebar')</pre>
<pre>      || !dynamic_sidebar(4) ) : ?&gt;</pre>
<pre>     &lt;p&gt;Dynamic Sidebar 4 not working.&lt;/p&gt;</pre>
<pre>     &lt;?php endif; ?&gt;</pre>
<pre>   &lt;/div&gt;</pre>
<pre>&lt;/div&gt; &lt;!-- Close bottom --&gt;</pre>
<p>Notes: The first id, #bottom, is a div or box (if you want to think of it like that) containing both of the sidebars I want to put at the bottom. I will be able to add styling to #bottom so it will look uniform across the bottom (like perhaps a solid background color). The class=&#8221;secondary&#8221; continues the styles from the K2 sidebar style sheet but this can also be overridden. The first div, #bottom1, is  where I call sidebar #3 to be displayed. If something is not working correctly, the text &#8220;Dynamic Sidebar 3 not working.&#8221; will be displayed instead. The second div, #bottom2, is where sidebar #4 is called. It will display similar text if something happens and the widgets do not display.</p>
<p>For this site, I&#8217;ve created a special osm style directory with an osm.css file. If you need help in creating this with the K2 theme, <a title="Custom style sheet" href="http://www.opensourcemaven.com/2007/10/10/customize-k2-theme-create-custom-style-sheet-and-fixing-header-size/" target="_blank">follow these instructions</a>. The following is what I added to style the divs I created above.</p>
<p><strong>Add to osm.css (special style sheet):<br />
</strong></p>
<pre>#bottom { }</pre>
<pre>#bottom1 {</pre>
<pre>  float: left;</pre>
<pre>  width: 420px;</pre>
<pre>  border: 1px solid red;</pre>
<pre>  }</pre>
<pre>#bottom2 {</pre>
<pre>  float: right;</pre>
<pre>  width: 420px;</pre>
<pre>  border: 1px solid green;</pre>
<pre>  }</pre>
<p>Notes: You&#8217;ll see I put a colored solid border around each of the divs (#bottom1 and #bottom2). This is so I could see where my boxes or divs where displaying at. I will be removing this line, but I&#8217;m going to leave it for instructional purposes right now. The float:left and float:right declarations tell the divs where it will line up inside the container div which is #bottom. You can change the width if you&#8217;d like one to be bigger than the other, or if you want more space in between them.</p>
<p>As it is right now, I do not have any padding between the border and the actual widget text. I&#8217;m going to be doing some additional styling tomorrow. I&#8217;ll take screen shots to put in this post so you can see where you&#8217;ll be if you follow these directions.</p>
<p><strong>**Edited**</strong> I&#8217;m adding a screen shot of the bottom as it looked at the end of this tutorial.</p>
<p><a title="Customizing Your WordPress Theme Footer Using Dynamic Sidebars" href="http://www.opensourcemaven.com/wp-content/uploads/2007/10/open-source-maven_tutorial1.png"><img src="http://www.opensourcemaven.com/wp-content/uploads/2007/10/open-source-maven_tutorial1.png" alt="Customizing Your WordPress Theme Footer Using Dynamic Sidebars" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://wpmaven.com/2008/06/30/customizing-your-wordpress-theme-footer-using-dynamic-sidebars/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Customize K2 Theme: Create Custom Style Sheet and Fixing Header Size</title>
		<link>http://wpmaven.com/2008/06/29/create-custom-style-sheet/</link>
		<comments>http://wpmaven.com/2008/06/29/create-custom-style-sheet/#comments</comments>
		<pubDate>Sun, 29 Jun 2008 16:00:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Customizing Theme]]></category>

		<category><![CDATA[WordPress Tutorial]]></category>

		<guid isPermaLink="false">http://www.wpmaven.com/?p=6</guid>
		<description><![CDATA[For simply His I already had a header design that was taller than the template would display. I created a custom style sheet to fix the header size. I&#8217;ll be adding to this custom style sheet to give the blog a more personal touch.


In the K2 RC2/styles folder, I created another folder &#8220;simplyhis&#8221; and an [...]]]></description>
			<content:encoded><![CDATA[<p>For simply His I already had a header design that was taller than the template would display. I created a custom style sheet to fix the header size. I&#8217;ll be adding to this custom style sheet to give the blog a more personal touch.</p>
<p><span id="more-9"></span></p>
<ol>
<li>In the K2 RC2/styles folder, I created another folder &#8220;simplyhis&#8221; and an empty text file &#8220;simplyhis.css&#8221;</li>
<li>I edited simplyhis.css to add the following:
<pre>#header {height:230px;}</pre>
</li>
<li>Under Presentation -&gt; Themes -&gt; K2 Options, I went down to the Style section (<a title="Downloading, Installing, and Preferences" href="http://www.wpmaven.com/2008/07/hello-world/" target="_blank">referenced in Step #7 of this post</a>). I selected the simplyhis.css style sheet.</li>
<li>Under the Header section on the same page, I uploaded and chose my header file here. This keeps it from resizing my header image for me.</li>
<li>Click the Update Options.</li>
</ol>
<p>If you don&#8217;t know much about CSS, don&#8217;t worry. I&#8217;ll be getting into some very basic CSS so you&#8217;ll be able to make basic changes to a WordPress theme.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpmaven.com/2008/06/29/create-custom-style-sheet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Customize K2 Theme: Downloading, Installing, and Preferences</title>
		<link>http://wpmaven.com/2008/06/28/hello-world-2/</link>
		<comments>http://wpmaven.com/2008/06/28/hello-world-2/#comments</comments>
		<pubDate>Sat, 28 Jun 2008 16:00:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Customizing Theme]]></category>

		<category><![CDATA[WordPress Tutorial]]></category>

		<guid isPermaLink="false">http://www.wpmaven.com/?p=1</guid>
		<description><![CDATA[This was first published on Open Source Maven on October 6, 2007.
For my WordPress blog, simply His, I decided to build upon the theme K2. The version I just download and installed is the Release Candidate 2. This is the latest as of October 5, 2007. You should always check their site [ getk2.com ] [...]]]></description>
			<content:encoded><![CDATA[<p><em>This was first published on Open Source Maven on October 6, 2007.</em></p>
<p>For my WordPress blog, <a title="simply His" href="http://simplyhis.org" target="_blank">simply His</a>, I decided to build upon the theme K2. The version I just download and installed is the Release Candidate 2. This is the latest as of October 5, 2007. You should always check their site [ <a title="Get K2" href="http://getk2.com/" target="_blank">getk2.com</a> ] to make sure you get the latest version.</p>
<p><span id="more-8"></span></p>
<ol>
<li>Go to http://getk2.com/download/</li>
<li>Click on first download link displayed on this page. [ <a title="How do I download a file?" href="http://www.wpmaven.com/2008/06/how-do-i-download-a-file/" target="_blank">Download?</a> ]</li>
<li> Unzip the .zip file. [ <a title="What do I do with a zip file?" href="http://www.wpmaven.com/2008/06/what-do-i-do-with-a-zip-file/" target="_blank">Zip?</a> ]</li>
<li>FTP the contents of the zip file (everything including the main folder) to your blog&#8217;s theme directory. [ <a title="How do I FTP?" href="http://www.wpmaven.com/2008/06/how-do-i-ftp/" target="_blank">FTP?</a> ]<br />
* Your blog&#8217;s theme directory should be located in /domainname.com/wp-content/themes/</li>
<li>In WordPress Admin, select Presentation -&gt; Themes.</li>
<li>You should see the name &#8220;K2.0 Release Candidate 2&#8243; and a thumbnail picture. Click on the picture or the text to select the theme.</li>
<li>Under Presentation -&gt; Themes, you will see additional choices once K2.0 has been selected. Click on K2 Options.
<ol>
<li> Advanced Navigation &#8212; This adds some nifty navigation to make your blog faster and easier to navigate.</li>
<li>Archives Page &#8212; This lets readers access archived posts easier.</li>
<li>Live Commenting &#8212; Makes it easier for people to comment without having to reload the page.</li>
<li>Sidebar Management &#8212; By now you&#8217;ve probably heard of widgets. K2 has a Sidebar Manager that comes with the theme or you can choose to use WordPress&#8217; Widget manager. I chose WordPress&#8217; Widgets here because I&#8217;m most familiar with how they work.</li>
<li>Columns &#8212; This is so cool! You can instantly change from a Single Column (which puts the sidebars below the main column) to Two Columns to Three Columns. The only drawback I see here is the Three Columns choice puts the main content (bigger) column in the middle. There is not an easy way to move it &#8212; say to have a main content column on the left and two smaller columns on the right. Easy is relative in that you *can* do this, but it will take some editing of some php files to set it up.</li>
<li>Asides &#8212; Here you can choose to select a category as asides or not to use this at all. I have chosen No Asides right now.</li>
<li>Style &#8212; Choosing No Style here simply takes all of the K2 design defaults. If you wanted to, you can create your own style sheet, ftp it into the Styles folder inside the K2 theme folder and choose it here. This style sheet would be loaded after the other style sheets so you could override or change things that you didn&#8217;t like in the default style. There are 2 sample style sheets here if you care to look at them.</li>
<li>Header &#8212; Here you can upload an image for your header. Since I have chosen the 2 column layout, it tells me the default header size is 780&#215;200px. If I try to upload an image larger than that, then it will ask me to crop it. You can also easily setup a randomized header image here. You can either upload one image at a time through this section or you can FTP images into a special folder. The special folder is found in /wp-content/themes/K2 Release Candidate 2/images/headers/. You can also rename the default Blog tab &#8212; for example if you wanted to call it Home.</li>
</ol>
</li>
<li>Click the Update Options button when you are finished.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://wpmaven.com/2008/06/28/hello-world-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What do I do with a .zip file?</title>
		<link>http://wpmaven.com/2008/06/27/what-do-i-do-with-a-zip-file/</link>
		<comments>http://wpmaven.com/2008/06/27/what-do-i-do-with-a-zip-file/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 16:00:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Basics]]></category>

		<guid isPermaLink="false">http://www.wpmaven.com/?p=5</guid>
		<description><![CDATA[If you are running Windows XP (or a later version of Windows operating system), you can easily unzip the file. A .zip file contains several other files compressed into a single file for easier distribution.


Find the file where you downloaded it to your computer.
Right-click the .zip file and select Extract All.
You will be asked where [...]]]></description>
			<content:encoded><![CDATA[<p>If you are running Windows XP (or a later version of Windows operating system), you can easily unzip the file. A .zip file contains several other files compressed into a single file for easier distribution.</p>
<p><span id="more-7"></span></p>
<ol>
<li>Find the file where you downloaded it to your computer.</li>
<li>Right-click the .zip file and select Extract All.</li>
<li>You will be asked where you want to save the extracted files, so select a place and remember where it&#8217;s putting the files. I generally take the default.</li>
<li>When finished, you can have the computer automatically open the folder holding the contents of the .zip file by keeping the box checked &#8220;Show Extracted Files&#8221; and clicking the Finish button.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://wpmaven.com/2008/06/27/what-do-i-do-with-a-zip-file/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How Do I Download a File?</title>
		<link>http://wpmaven.com/2008/06/26/how-do-i-download-a-file/</link>
		<comments>http://wpmaven.com/2008/06/26/how-do-i-download-a-file/#comments</comments>
		<pubDate>Thu, 26 Jun 2008 16:00:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Basics]]></category>

		<guid isPermaLink="false">http://www.wpmaven.com/?p=4</guid>
		<description><![CDATA[Most of the time you will see a link to click on. Clicking on this link should bring up a dialog box asking where you would like to save the file. Be sure you remember where you are saving the file on your computer. I typically have a folder named Downloads in My Documents. Once [...]]]></description>
			<content:encoded><![CDATA[<p>Most of the time you will see a link to click on. Clicking on this link should bring up a dialog box asking where you would like to save the file. Be sure you remember where you are saving the file on your computer. I typically have a folder named Downloads in My Documents. Once the file is downloaded, then you will browse on your computer to the folder you saved the file in. Depending on the type of file, you will have additional steps to go through to use it.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpmaven.com/2008/06/26/how-do-i-download-a-file/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How Do I FTP?</title>
		<link>http://wpmaven.com/2008/06/25/how-do-i-ftp/</link>
		<comments>http://wpmaven.com/2008/06/25/how-do-i-ftp/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 15:00:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Basics]]></category>

		<guid isPermaLink="false">http://www.wpmaven.com/?p=3</guid>
		<description><![CDATA[FTP stands for File Transfer Protocol. You need an FTP client (software) running on your computer to connect to your web server. I prefer FileZilla.

When you first open FileZilla, you will want to store your website information.

Go to File -&#62; Site Manager.
Click New Site.
Enter a name for the site.
Under Site details, you will want to [...]]]></description>
			<content:encoded><![CDATA[<p>FTP stands for File Transfer Protocol. You need an FTP client (software) running on your computer to connect to your web server. I prefer <a title="FileZilla FTP Client" href="http://filezilla-project.org/" target="_blank">FileZilla</a>.</p>
<p><span id="more-5"></span></p>
<p>When you first open FileZilla, you will want to store your website information.</p>
<ol>
<li>Go to File -&gt; Site Manager.</li>
<li>Click New Site.</li>
<li>Enter a name for the site.</li>
<li>Under Site details, you will want to put the following information:
<ul>
<li>Host: This is usually in the form of ftp.website.com where website.com is your domain name.</li>
<li>Port: Keep the defaults for this.</li>
<li>Server type: Use FTP unless you know for sure your web host has specified something else.</li>
<li>Log On Type: Select Normal.</li>
<li>User: Put your FTP username.</li>
<li>Password: Put your FTP password here.</li>
</ul>
</li>
<li>Click the Connect button.</li>
<li>You will see that your window is divided into 2 parts. The first part on the left says &#8220;Local Site&#8221;. You will see a listing of the files and folders on your computer. Browse to the folder where the files are you want to upload.</li>
<li>On the right side, you will see under &#8220;Remote Site&#8221; a list of all the folders/files on your website. Open the folder where you want to put the files you are uploading.</li>
<li>Click and drag from the left side &#8220;Local Site&#8221; to the right side &#8220;Remote Site&#8221; and the files will begin transferring.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://wpmaven.com/2008/06/25/how-do-i-ftp/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
