<?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>jimmitchell.org&#187; WordPress</title>
	<atom:link href="http://jimmitchell.org/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://jimmitchell.org</link>
	<description>Mac Morsels and Other Useful Stuff</description>
	<lastBuildDate>Sun, 05 Feb 2012 01:48:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Bogart WordPress Theme Updated</title>
		<link>http://jimmitchell.org/2010/05/05/bogart-wordpress-theme-updated/</link>
		<comments>http://jimmitchell.org/2010/05/05/bogart-wordpress-theme-updated/#comments</comments>
		<pubDate>Thu, 06 May 2010 01:23:55 +0000</pubDate>
		<dc:creator>Jim Mitchell</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://jimmitchell.org/?p=1134</guid>
		<description><![CDATA[A quick update to my Bogart WordPress theme.]]></description>
			<content:encoded><![CDATA[Copyright &copy; 2012 <a href="http://jimmitchell.org">Jim Mitchell</a>. Visit the original article at <a href="http://jimmitchell.org/2010/05/05/bogart-wordpress-theme-updated/">http://jimmitchell.org/2010/05/05/bogart-wordpress-theme-updated/</a>.<br /><p>A very quick post&#8230;</p>

<p>A user of my Bogart WordPress theme was kind enough to point out that there was a minor bug in the comments.php file which was causing some page rendering issues when users were required to be logged in to make comments. I quickly tracked the culprit down and squashed the bug with my big size 12&#8230;</p>

<p>If you&#8217;re a Bogart user, head on over to the <a href="http://jimmitchell.org/projects/bogart/">theme page</a> and grab a new copy. Or, if you&#8217;ve modified the theme in some way, all you really have to replace is the &#8220;comments.php&#8221; file from the new archive you download, and you&#8217;re all set.</p>

<p><b>Update:</b> Another minor bug was found in the &#8220;archive.php&#8221; file which has corrected as well, bringing the latest version to 1.0.4.</p>
Similar Posts:<ul><li><a href="http://jimmitchell.org/2010/10/23/yasu-updated-to-version-2-7/" rel="bookmark" title="10/23/10">Yasu Updated to Version 2.7</a></li>

<li><a href="http://jimmitchell.org/2010/09/20/mailplane-clean-css-updated/" rel="bookmark" title="9/20/10">Mailplane Clean CSS Updated</a></li>

<li><a href="http://jimmitchell.org/2011/06/03/yasu-updated-to-version-2-7-3/" rel="bookmark" title="6/3/11">Yasu Updated to Version 2.7.3</a></li>
</ul><!-- Similar Posts took 1428.364 ms -->]]></content:encoded>
			<wfw:commentRss>http://jimmitchell.org/2010/05/05/bogart-wordpress-theme-updated/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Clean Up Your WordPress Database Collations</title>
		<link>http://jimmitchell.org/2010/05/03/clean-up-your-wordpress-database-character-sets-collations/</link>
		<comments>http://jimmitchell.org/2010/05/03/clean-up-your-wordpress-database-character-sets-collations/#comments</comments>
		<pubDate>Mon, 03 May 2010 17:40:42 +0000</pubDate>
		<dc:creator>Jim Mitchell</dc:creator>
				<category><![CDATA[Linked List]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHPMyAdmin]]></category>

		<guid isPermaLink="false">http://jimmitchell.org/?p=1126</guid>
		<description><![CDATA[Easily clean up your WordPress character sets &#38; collations with this detailed tutorial.]]></description>
			<content:encoded><![CDATA[Copyright &copy; 2012 <a href="http://jimmitchell.org">Jim Mitchell</a>. Visit the original article at <a href="http://jimmitchell.org/2010/05/03/clean-up-your-wordpress-database-character-sets-collations/">http://jimmitchell.org/2010/05/03/clean-up-your-wordpress-database-character-sets-collations/</a>.<br /><blockquote>
<p>If you began using <a href="http://wordpress.org/">WordPress</a> prior to version 2.2, you may notice that your database has tables with two different <a href="http://en.wikipedia.org/wiki/Character_encoding">character sets</a> and <a href="http://en.wikipedia.org/wiki/Collation">collations</a>. This is because all database tables created prior to WordPress 2.2 use the <a href="http://en.wikipedia.org/wiki/ISO/IEC_8859-1">latin1</a> character set and the latin1_swedish_ci collation, and all database tables created after WordPress 2.2 use the <a href="http://en.wikipedia.org/wiki/UTF-8">utf8</a> character set and the utf8_general_ci collation.</p>
<p>(Via <a href="http://www.macmanx.com/blog">MacManX.com</a>.)</p>
</blockquote>

<p>James Huff has written a <em>very</em> handy how-to for fixing your WordPress character sets &amp; collations. I highly recommend preforming the clean up if you&#8217;re technically savvy and have access to your MySQL database. I was in bad need of a clean up myself, and this helped tremendously. I was also able to fix some other lingering link and email address issues I&#8217;ve caused by serving my WordPress install on 3 different domains over the years.</p>
Similar Posts:<ul><li><a href="http://jimmitchell.org/2011/12/16/automatically-get-rid-of-those-used-zip-archives/" rel="bookmark" title="12/16/11">Automatically Get Rid of Those Used .zip Archives</a></li>

<li><a href="http://jimmitchell.org/2010/09/30/mailplane-clean-css-updated-again/" rel="bookmark" title="9/30/10">Mailplane Clean CSS Updated (Again)</a></li>

<li><a href="http://jimmitchell.org/2010/11/06/mailplane-clean-css-update/" rel="bookmark" title="11/6/10">Mailplane Clean CSS Update</a></li>
</ul><!-- Similar Posts took 669.842 ms -->]]></content:encoded>
			<wfw:commentRss>http://jimmitchell.org/2010/05/03/clean-up-your-wordpress-database-character-sets-collations/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bogart WordPress Theme Updated to v1.0.2</title>
		<link>http://jimmitchell.org/2010/01/03/bogart-wordpress-theme-updated-to-1-0-2/</link>
		<comments>http://jimmitchell.org/2010/01/03/bogart-wordpress-theme-updated-to-1-0-2/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 02:22:46 +0000</pubDate>
		<dc:creator>Jim Mitchell</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Bogart]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://jimmitchell.org/?p=602</guid>
		<description><![CDATA[Copyright &#169; 2012 Jim Mitchell. Visit the original article at http://jimmitchell.org/2010/01/03/bogart-wordpress-theme-updated-to-1-0-2/.A quick note to say that a few more tweaks to my Bogart theme has brought it to version 1.0.2, and is downloadable from the Bogart page. If you use it and like it, go get it&#8230; Similar Posts:Bogart WordPress Theme Updated Mailplane Clean CSS [...]]]></description>
			<content:encoded><![CDATA[Copyright &copy; 2012 <a href="http://jimmitchell.org">Jim Mitchell</a>. Visit the original article at <a href="http://jimmitchell.org/2010/01/03/bogart-wordpress-theme-updated-to-1-0-2/">http://jimmitchell.org/2010/01/03/bogart-wordpress-theme-updated-to-1-0-2/</a>.<br /><p>A quick note to say that a few more tweaks to my Bogart theme has brought it to version 1.0.2, and is downloadable from the <a href="http://jimmitchell.org/projects/bogart/">Bogart page</a>.</p>

<p>If you use it and like it, go get it&#8230;</p>
Similar Posts:<ul><li><a href="http://jimmitchell.org/2010/05/05/bogart-wordpress-theme-updated/" rel="bookmark" title="5/5/10">Bogart WordPress Theme Updated</a></li>

<li><a href="http://jimmitchell.org/2010/09/20/mailplane-clean-css-updated/" rel="bookmark" title="9/20/10">Mailplane Clean CSS Updated</a></li>

<li><a href="http://jimmitchell.org/2011/06/03/yasu-updated-to-version-2-7-3/" rel="bookmark" title="6/3/11">Yasu Updated to Version 2.7.3</a></li>
</ul><!-- Similar Posts took 345.143 ms -->]]></content:encoded>
			<wfw:commentRss>http://jimmitchell.org/2010/01/03/bogart-wordpress-theme-updated-to-1-0-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bogart WordPress Theme Finally Updated</title>
		<link>http://jimmitchell.org/2009/12/12/bogart-wordpress-theme-finally-updated/</link>
		<comments>http://jimmitchell.org/2009/12/12/bogart-wordpress-theme-finally-updated/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 05:12:45 +0000</pubDate>
		<dc:creator>Jim Mitchell</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Bogart]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://jimmitchell.org/?p=578</guid>
		<description><![CDATA[Copyright &#169; 2012 Jim Mitchell. Visit the original article at http://jimmitchell.org/2009/12/12/bogart-wordpress-theme-finally-updated/.I&#8217;m very pleased to announce that after a few days of nose to the grindstone, my Bogart WordPress theme has been updated in a major way, and is now released as a full-fledged &#8220;1.0&#8243; version. Lots of enhancements went into this release. First, there&#8217;s the [...]]]></description>
			<content:encoded><![CDATA[Copyright &copy; 2012 <a href="http://jimmitchell.org">Jim Mitchell</a>. Visit the original article at <a href="http://jimmitchell.org/2009/12/12/bogart-wordpress-theme-finally-updated/">http://jimmitchell.org/2009/12/12/bogart-wordpress-theme-finally-updated/</a>.<br /><p>I&#8217;m very pleased to announce that after a few days of nose to the grindstone, my Bogart WordPress theme has been updated in a major way, and is now released as a full-fledged &#8220;1.0&#8243; version.</p>

<p>Lots of enhancements went into this release. First, there&#8217;s the use of a custom display font for the &#8220;H tags&#8221; (H1, H2, etc.) using the next big thing, @font-face styling. They face used is &#8220;<a href="http://www.fontsquirrel.com/fonts/Tiresias-Infofont">Tiresias Infofont</a>&#8220;. It&#8217;s a nice, modern display font. For other free fonts that can be used in CSS &amp; HTML pages/themes, visit <a href="http://www.fontsquirrel.com/fontface">Font Squirrel</a>. There is a metric ton of cool faces available for use there.</p>

<p>Second, the main navigation now supports drop-down menus for subpages. See it in action by hovering over the Projects link in the navigation menu above, you&#8217;ll see a drop-down for all of my themes &#8212; that is, unless you&#8217;re browsing with IE6, and if you are, shame on you. Get with the times already&#8230;</p>

<p>Third, Bogart now properly handles threaded comments, which were introduced in WordPress 2.7.</p>

<p>Last, but not least, depending on the type of page (index, post or page) you can set up the left sidebar column to use different widget configurations. If you want one widget to display on your index page, and some other on a single post, you can have it. If you don&#8217;t want post related widgets on your non-post pages, you can have that too. The right sidebar is shared among all page types, so you can put the widgets you want on all pages there.</p>

<p>There are a lot of other little style related things that make the theme overall more pretty, and more modern than its predecessors. If you&#8217;re using Bogart already, I know you&#8217;ll really like this version.</p>

<p>Head on over to the <a href="http://jimmitchell.org/projects/bogart/">Bogart</a> page and download yourself a copy. You&#8217;ll be glad you did. Or, if you want to see the theme in action, browse the site.</p>

<p>Let me know what you think.</p>
Similar Posts:<ul><li><a href="http://jimmitchell.org/2010/05/05/bogart-wordpress-theme-updated/" rel="bookmark" title="5/5/10">Bogart WordPress Theme Updated</a></li>

<li><a href="http://jimmitchell.org/2011/07/12/fastscripts-2-6-update-available-from-red-sweater-software/" rel="bookmark" title="7/12/11">FastScripts 2.6 Update Available from Red Sweater Software</a></li>

<li><a href="http://jimmitchell.org/2010/03/11/fontsquirrel-com-adds-font-face-generator/" rel="bookmark" title="3/11/10">FontSquirrel.com Adds @font-face Generator</a></li>
</ul><!-- Similar Posts took 266.949 ms -->]]></content:encoded>
			<wfw:commentRss>http://jimmitchell.org/2009/12/12/bogart-wordpress-theme-finally-updated/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Always Do Your Own Usability Tests</title>
		<link>http://jimmitchell.org/2009/02/01/always-do-your-own-usability-tests/</link>
		<comments>http://jimmitchell.org/2009/02/01/always-do-your-own-usability-tests/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 16:25:05 +0000</pubDate>
		<dc:creator>Jim Mitchell</dc:creator>
				<category><![CDATA[Site]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Plugin]]></category>

		<guid isPermaLink="false">http://jimmitchell.org/?p=758</guid>
		<description><![CDATA[Always test your WordPress site after activating/deactivating plugins.]]></description>
			<content:encoded><![CDATA[Copyright &copy; 2012 <a href="http://jimmitchell.org">Jim Mitchell</a>. Visit the original article at <a href="http://jimmitchell.org/2009/02/01/always-do-your-own-usability-tests/">http://jimmitchell.org/2009/02/01/always-do-your-own-usability-tests/</a>.<br /><p>I learned a valuable lesson the hard way today. The lesson being, always test your WordPress site after you activate or deactivate a plugin.</p>

<p>It turns out using the <a href="http://www.rutschmann.biz/php-mysql-javascript-und-ajax/wordpress-multibox-plugin-en">WordPress Multibox Plugin</a> on my site was locking visitors out from being able to download zip compressed files if that download link used an image for the link. It&#8217;s been going on for at least 2 or 3 weeks. I&#8217;m baffled as to why it took that long to hear from anyone.</p>

<p>The cause was that the image, which is a .gif, was listed as one of the image types the plugin should apply to. Since I probably won&#8217;t use a .gif for anything I&#8217;d want the Multibox Plugin to act on, I removed it from the list of file extensions. Problem solved easily.</p>

<p>So, the moral of the story is test, test again and then test some more when making any kind of change to your site.</p>
Similar Posts:<ul><li><a href="http://jimmitchell.org/2010/05/05/bogart-wordpress-theme-updated/" rel="bookmark" title="5/5/10">Bogart WordPress Theme Updated</a></li>

<li><a href="http://jimmitchell.org/2010/05/03/clean-up-your-wordpress-database-character-sets-collations/" rel="bookmark" title="5/3/10">Clean Up Your WordPress Database Collations</a></li>

<li><a href="http://jimmitchell.org/2011/01/01/one-for-the-wordpress-users/" rel="bookmark" title="1/1/11">One for the WordPress Users</a></li>
</ul><!-- Similar Posts took 2470.614 ms -->]]></content:encoded>
			<wfw:commentRss>http://jimmitchell.org/2009/02/01/always-do-your-own-usability-tests/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bogart WordPress Theme Updated to v0.9</title>
		<link>http://jimmitchell.org/2008/11/24/bogart-wordpress-theme-updated-to-v09/</link>
		<comments>http://jimmitchell.org/2008/11/24/bogart-wordpress-theme-updated-to-v09/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 05:53:08 +0000</pubDate>
		<dc:creator>Jim Mitchell</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Bogart]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://jimmitchell.org/?p=536</guid>
		<description><![CDATA[Bogart gets a bump to version 0.9]]></description>
			<content:encoded><![CDATA[Copyright &copy; 2012 <a href="http://jimmitchell.org">Jim Mitchell</a>. Visit the original article at <a href="http://jimmitchell.org/2008/11/24/bogart-wordpress-theme-updated-to-v09/">http://jimmitchell.org/2008/11/24/bogart-wordpress-theme-updated-to-v09/</a>.<br /><p>At the request of <a href="http://twitter.com/vassie">Ben Vassie</a>, I&#8217;ve updated Bogart to version 0.9 to include gravatar support. I also threw in a few other minor aesthetic fixes while I was mucking about in the code.</p>

<p>It&#8217;s downloadable from the Bogart page at <a href="http://jimmitchell.org/projects/bogart/">http://jimmitchell.org/projects/bogart/</a></p>

<p>Enjoy!</p>
Similar Posts:<ul><li><a href="http://jimmitchell.org/2010/05/05/bogart-wordpress-theme-updated/" rel="bookmark" title="5/5/10">Bogart WordPress Theme Updated</a></li>

<li><a href="http://jimmitchell.org/2011/06/03/yasu-updated-to-version-2-7-3/" rel="bookmark" title="6/3/11">Yasu Updated to Version 2.7.3</a></li>

<li><a href="http://jimmitchell.org/2010/09/20/mailplane-clean-css-updated/" rel="bookmark" title="9/20/10">Mailplane Clean CSS Updated</a></li>
</ul><!-- Similar Posts took 619.709 ms -->]]></content:encoded>
			<wfw:commentRss>http://jimmitchell.org/2008/11/24/bogart-wordpress-theme-updated-to-v09/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Regarding WordPress Theme Thievery</title>
		<link>http://jimmitchell.org/2008/07/19/regarding-wordpress-theme-thievery/</link>
		<comments>http://jimmitchell.org/2008/07/19/regarding-wordpress-theme-thievery/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 05:39:46 +0000</pubDate>
		<dc:creator>Jim Mitchell</dc:creator>
				<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Copyright Infringement]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://jimmitchell.org/?p=459</guid>
		<description><![CDATA[Twice this week I've discovered commercial web sites using my Bogart theme contrary to the Creative Commons license I've attached to it.]]></description>
			<content:encoded><![CDATA[Copyright &copy; 2012 <a href="http://jimmitchell.org">Jim Mitchell</a>. Visit the original article at <a href="http://jimmitchell.org/2008/07/19/regarding-wordpress-theme-thievery/">http://jimmitchell.org/2008/07/19/regarding-wordpress-theme-thievery/</a>.<br /><p>Would you provide supportive services to someone for free so that person could make a living doing what they do? Say, if someone ran a clothing store, would you sew all the garments and set them on the curb with a free sign so that shop owner could take your work and sell it without paying you a penny for it? What about a deli? Would you bake bread to give away for free so they could use it to sell sandwiches to make money?</p>

<p>I&#8217;m sure the answer would be no to both cases. Then why is it that some people who run <a href="http://www.wordpress.org">WordPress</a> sites seem to think that they can take themes which have very specific copyright restrictions on them, change those themes as they please, remove all credit to the original author (who put their personal time and effort into the work), and then present it as their own on a commercial blog?</p>

<p>I don&#8217;t know why either, but that&#8217;s exactly what I found twice this week regarding my <a href="http://jimmitchell.org/projects/bogart/">Bogart</a> theme, which has a <a href="http://creativecommons.org/licenses/by-nd/3.0/us/">Creative Commons Attribution-No Derivative Works 3.0 United States License</a> attached to it. The first was a site that made some alterations to Bogart by adding a few new class selectors, images, and changing the ordering of columns in the index template. All credit to me was removed from the theme template (except in the CSS file where no one would see it). The second didn&#8217;t change a thing, aside from removing my copyright in the footer.php file, and replacing it with their own.</p>

<p>In both cases, the sites are set up as commercial blogs using Google AdSense ads to generate income. In other words, they&#8217;re using my free bread to create sandwiches that are making them money. This isn&#8217;t right. When something&#8217;s not right, I fight.</p>

<p>I&#8217;m pleased to say that in the case of the first site, I was able to get the matter resolved the day I contacted them. As it was told, the original owner of the site changed my theme before selling the entire blog to another company. In this case, the new owner did the right thing, and we were able to agree on a fair license agreement to use my work. Even though he didn&#8217;t change my work himself, the new owner was still using my core code base, and recognized this fact. I have tremendous respect for this individual for doing the right thing without hesitation.</p>

<p>The second, which I just learned of this evening, has been notified of their infringement. I am still waiting to hear from someone. There was no way to contact anyone directly and emails sent to very generic accounts for the site have bounced back. The site appears to be a link-bait type of set up with tons of keywords and links to other spammy blogs. I may have to pull a DMCA take down on them if they don&#8217;t respond.</p>

<p><b>Update:</b> The second site has responded, and have added my theme credit link back to the footer file.</p>

<p>The point of all this is simple. If you want a cool looking WordPress theme for your site, especially if you&#8217;re hoping to make money from it &#8212; think before you start making changes to someone else&#8217;s work. Ask yourself &#8220;Did someone else put their own time in effort into this nice looking theme? And would they be pissed off if I removed their credit before I put it up on my site?&#8221; Your <a href="http://en.wikipedia.org/wiki/Ego">id</a> would tell you yes in both cases.</p>

<p>Simply because something is available for download on the internet, that doesn&#8217;t mean it&#8217;s free. Just like music, poetry and art, code is owned by the person who created it (or whoever they wrote it for). So do the right thing. If that WordPress theme has a credit link in the footer, and you want to use it for free &#8212; then leave the link right where it is. By putting that little link where we do, we theme authors are simply asking to be paid for our work in recognition via clicks back to our sites. And if you don&#8217;t want the link, then contact the author to work something out. Even if it&#8217;s just a little scratch in their Paypal account, getting a few bucks for their labor of love will make the day for most theme authors.</p>

<p>The moral of my rant? That WordPress theme was made public for a reason &#8212; because somebody with talent wanted to share it with you and the rest of the world. If it has some restrictions and a copyright notice attached, then honor it&#8230; Because that&#8217;s the right thing to do &#8212; both morally and legally.</p>
Similar Posts:<ul><li><a href="http://jimmitchell.org/2011/01/01/one-for-the-wordpress-users/" rel="bookmark" title="1/1/11">One for the WordPress Users</a></li>

<li><a href="http://jimmitchell.org/2010/05/05/bogart-wordpress-theme-updated/" rel="bookmark" title="5/5/10">Bogart WordPress Theme Updated</a></li>

<li><a href="http://jimmitchell.org/2010/05/03/clean-up-your-wordpress-database-character-sets-collations/" rel="bookmark" title="5/3/10">Clean Up Your WordPress Database Collations</a></li>
</ul><!-- Similar Posts took 1203.142 ms -->]]></content:encoded>
			<wfw:commentRss>http://jimmitchell.org/2008/07/19/regarding-wordpress-theme-thievery/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Bogart WordPress Theme Gets a Bump</title>
		<link>http://jimmitchell.org/2008/01/20/bogart-wordpress-theme-gets-a-bump/</link>
		<comments>http://jimmitchell.org/2008/01/20/bogart-wordpress-theme-gets-a-bump/#comments</comments>
		<pubDate>Mon, 21 Jan 2008 06:25:39 +0000</pubDate>
		<dc:creator>Jim Mitchell</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Bogart]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://jimmitchell.org/2008/01/20/bogart-wordpress-theme-gets-a-bump/</guid>
		<description><![CDATA[A few tweaks and a new page template option get added to Bogart...]]></description>
			<content:encoded><![CDATA[Copyright &copy; 2012 <a href="http://jimmitchell.org">Jim Mitchell</a>. Visit the original article at <a href="http://jimmitchell.org/2008/01/20/bogart-wordpress-theme-gets-a-bump/">http://jimmitchell.org/2008/01/20/bogart-wordpress-theme-gets-a-bump/</a>.<br /><p>A quick note to let those interested know that I&#8217;ve added a new &#8220;wide&#8221; single column page option to my Bogart WordPress theme, as well as tweaking some of the CSS. The wide page has no sidebar in it at all. Perfect for those single pages that you don&#8217;t want sidebar stuff cluttering up. You can download the latest archive (v0.8) from the <a href="http://jimmitchell.org/projects/bogart/">Bogart page</a>.</p>
Similar Posts:<ul><li><a href="http://jimmitchell.org/2010/05/05/bogart-wordpress-theme-updated/" rel="bookmark" title="5/5/10">Bogart WordPress Theme Updated</a></li>

<li><a href="http://jimmitchell.org/2010/09/20/mailplane-clean-css-updated/" rel="bookmark" title="9/20/10">Mailplane Clean CSS Updated</a></li>

<li><a href="http://jimmitchell.org/2011/07/26/yasu-update-for-mac-os-x-10-7/" rel="bookmark" title="7/26/11">Yasu Updated for Mac OS X 10.7 &#8220;Lion&#8221;</a></li>
</ul><!-- Similar Posts took 888.857 ms -->]]></content:encoded>
			<wfw:commentRss>http://jimmitchell.org/2008/01/20/bogart-wordpress-theme-gets-a-bump/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

