<?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"
	>

<channel>
	<title>Mirage Design Works</title>
	<atom:link href="http://johncrenshaw.net/wordpress-themes/feed/" rel="self" type="application/rss+xml" />
	<link>http://johncrenshaw.net/wordpress-themes</link>
	<description>Free Wordpress Themes brought to you by Mirage Design Works. Dream Real.</description>
	<pubDate>Fri, 01 Aug 2008 16:39:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>Released: Cutline Mod, New and Improved</title>
		<link>http://johncrenshaw.net/wordpress-themes/cutline-mod-v20/</link>
		<comments>http://johncrenshaw.net/wordpress-themes/cutline-mod-v20/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 16:38:16 +0000</pubDate>
		<dc:creator>John Crenshaw</dc:creator>
		
		<category><![CDATA[New Releases]]></category>

		<category><![CDATA[cutline]]></category>

		<category><![CDATA[cutline mod]]></category>

		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://johncrenshaw.net/wordpress-themes/?p=17</guid>
		<description><![CDATA[It&#8217;s been a long time coming, but I&#8217;ve finally released the newest version of the Cutline Mod WordPress Theme. I&#8217;ve completely rebuilt the theme from the ground up to make the code easier to understand and much better optimized.
Seeing as how the theme has brand spankin&#8217; new code behind it, I figured it was time [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a long time coming, but I&#8217;ve finally released the newest version of the Cutline Mod WordPress Theme. I&#8217;ve completely rebuilt the theme from the ground up to make the code easier to understand and much better optimized.</p>
<p>Seeing as how the theme has brand spankin&#8217; new code behind it, I figured it was time to give it its own name&#8230;</p>
<p>Introducing, <a title="WordPress Themes" href="http://wordpresshacker.com/themes/">This Just In! v2.3a</a></p>
]]></content:encoded>
			<wfw:commentRss>http://johncrenshaw.net/wordpress-themes/cutline-mod-v20/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Change the Main Navigation Links</title>
		<link>http://johncrenshaw.net/wordpress-themes/how-to-change-the-main-navigation-links/</link>
		<comments>http://johncrenshaw.net/wordpress-themes/how-to-change-the-main-navigation-links/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 01:37:22 +0000</pubDate>
		<dc:creator>John Crenshaw</dc:creator>
		
		<category><![CDATA[Main Navigation]]></category>

		<category><![CDATA[main menu]]></category>

		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://johncrenshaw.net/wordpress-themes/?p=16</guid>
		<description><![CDATA[This question comes from Gene Packwood and is something I thought a lot of people may want to figure out how to get done with the Cutline Mod theme, so I decided to write a post explaining the main navigation links in detail.

Changing the Link Anchor Text and Targets
The main navigation links are in the [...]]]></description>
			<content:encoded><![CDATA[<p>This question comes from Gene Packwood and is something I thought a lot of people may want to figure out how to get done with the Cutline Mod theme, so I decided to write a post explaining the main navigation links in detail.</p>
<p><span id="more-16"></span></p>
<h2>Changing the Link Anchor Text and Targets</h2>
<p>The main navigation links are in the header.php file. Here&#8217;s the code you&#8217;ll need to edit:<br />
<code><br />
&lt;ul id="nav"&gt;<br />
&lt;li&gt;&lt;a &lt;?php if (is_home()) echo('class="current" '); ?&gt;href="&lt;?php bloginfo('url'); ?&gt;"&gt;home&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a &lt;?php if (is_page('archives') || is_archive()) echo('class="current" '); ?&gt;href="&lt;?php bloginfo('url'); ?&gt;/archives/"&gt;archives&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a &lt;?php if (is_page('about')) echo('class="current" '); ?&gt;href="&lt;?php bloginfo('url'); ?&gt;/about/"&gt;about&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a &lt;?php if (is_page('sitemap')) echo('class="current" '); ?&gt;href="&lt;?php bloginfo('url'); ?&gt;/sitemap/"&gt;sitemap&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href="&lt;?php bloginfo('url'); ?&gt;/feed/" title="RSS Feed"&gt;feed&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;</code></p>
<p>Each navigation button is wrapped with &lt;li&gt;&lt;/li&gt; tags, so there are 5 links in the main navigation menu by default. Those are &#8220;home&#8221;, &#8220;archives&#8221;, &#8220;about&#8221;, &#8220;sitemap&#8221;, and &#8220;feed&#8221;. Editing the anchor text is fairly straightforward&#8230;just change the word right before the closing &lt;/a&gt; tag.</p>
<p>Editing the targets of these links is simple, but gets a bit convoluted if you&#8217;re not familiar with the Wordpress template tags used in the links above. So let me use one as an example.</p>
<p>Take the &#8220;about&#8221; link. Let&#8217;s say you have an about page on your blog, but instead of calling it &#8220;about&#8221;, it&#8217;s called &#8220;about this blog&#8221;. Let&#8217;s also say your &#8220;about this blog&#8221; page is located at &#8220;http://www.yourblogurl.com/about-this-blog&#8221;, instead of the default, &#8220;http://www.yourblogurl.com/about/&#8221;.</p>
<p>Just change the code for the about link from it&#8217;s default, which is this:</p>
<p><code> &lt;li&gt;&lt;a &lt;?php if (is_page('about')) echo('class="current" '); ?&gt;href="&lt;?php bloginfo('url'); ?&gt;/about/"&gt;about&lt;/a&gt;&lt;/li&gt;</code></p>
<p>to this:</p>
<p><code>&lt;li&gt;&lt;a &lt;?php if (is_page('about-this-blog')) echo ('class="current" '); ?&gt;href="&lt;?php bloginfo('url'); ?&gt;/about-this-blog/"&gt;about this blog&lt;/a&gt;&lt;/li&gt;</code></p>
<p>That code uses php and Wordpress template tags to do a couple things, so let me explain those&#8230;</p>
<p>If you get rid of everything within the &lt;?php ?&gt; tags, you&#8217;re left with a standard html a href tag&#8230;pretty simple if you&#8217;re familiar with html. The first snippet of php tests to see if the current page has the <em>page slug</em> &#8220;about-this_blog&#8221;. If it does, then php echoes &#8216;class=&#8221;current&#8221; to the browser. The second snippet of php (the part that says &lt;?php bloginfo(&#8217;url&#8217;); ?&gt; just echoes the blog&#8217;s url, followed by, in this case &#8220;/about-this-blog/&#8221;. So, if your blog is located at http://www.yourblogurl.com, and you&#8217;re currently viewing the page with a page slug of &#8220;about-this-blog&#8221;, the above code would output the following to the browser:</p>
<p><code>&lt;li&gt;&lt;a class="current" href="http://www.yourblogurl.com/about-this-blog/"&gt;about this blog&lt;/a&gt;&lt;/li&gt;</code></p>
<p>Pretty simple once you strip out all the php. The class=&#8221;current&#8221; part is styles the nav buttons to have a white background with black text if you&#8217;re currently viewing that page&#8230;that&#8217;s all that does.</p>
<p>So, let&#8217;s change that about link altogether into something else&#8230;let&#8217;s say a link to another website you have. So you just take the original about link, which is this:</p>
<p><code> &lt;li&gt;&lt;a &lt;?php if (is_page('about')) echo('class="current" '); ?&gt;href="&lt;?php bloginfo('url'); ?&gt;/about/"&gt;about&lt;/a&gt;&lt;/li&gt;</code></p>
<p>and change it to this (or something like it)&#8230;</p>
<p><code> &lt;li&gt;&lt;a href="http://www.anotherwebsite.com"&gt;link to another site&lt;/a&gt;&lt;/li&gt;</code></p>
<p>You&#8217;ll notice I got rid of the first &lt;?php ?&gt; tag because, if we&#8217;re sending the visitor off site with this link, we won&#8217;t need to style the link for that specific page&#8230;this should be obvious.</p>
<p>I got rid of the second &lt;?php ?&gt; tag because that&#8217;s only necessary for links going to other pages on your blog, and since we&#8217;re sending the visitor elsewhere, we don&#8217;t need it. That option is just your standard link tag inside of a list item.</p>
<h2>Changing the Main Nav Colors</h2>
<p>Ok, let me show you how to change all the nav links to one color, which is fairly straight forward. After that, we&#8217;ll change all the nav links to their own separate colors.</p>
<h3>Changing Nav Links to Another Color - All the Same</h3>
<p>This is pretty straight forward. Just open the stylsheet and find the following snippet inside &#8220;custom.css&#8221;:<br />
<code><br />
.custom ul#nav li a, ul#nav li a:visited {<br />
color: #FFF;<br />
background: #333;<br />
text-decoration: none;<br />
padding: 5px 10px 5px 10px;<br />
}</code></p>
<p>If you want to change the background of the links to brown, all you have to do is change the &#8220;background: #333;&#8221; attribute to &#8220;background: brown;&#8221;</p>
<p>Same thing with the text color or any other styles you&#8217;d like to change.</p>
<h3>Changing Nav Links to Another Color - All Different</h3>
<p>This isn&#8217;t quite as straightforward. You&#8217;ll need to add classes to each nav item link in the header.php file. Then you need to style those classes in the css. Maybe something like this:</p>
<p><code> &lt;ul id="nav"&gt;<br />
&lt;li&gt;&lt;a class="homelink" &lt;?php if (is_home()) echo('class="current" '); ?&gt;href="&lt;?php bloginfo('url'); ?&gt;"&gt;home&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a class="archiveslink" &lt;?php if (is_page('archives') || is_archive()) echo('class="current" '); ?&gt;href="&lt;?php bloginfo('url'); ?&gt;/archives/"&gt;archives&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a class="aboutlink" &lt;?php if (is_page('about')) echo('class="current" '); ?&gt;href="&lt;?php bloginfo('url'); ?&gt;/about/"&gt;about&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a class="sitemaplink" &lt;?php if (is_page('sitemap')) echo('class="current" '); ?&gt;href="&lt;?php bloginfo('url'); ?&gt;/sitemap/"&gt;sitemap&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a class="feedlink" href="&lt;?php bloginfo('url'); ?&gt;/feed/" title="RSS Feed"&gt;feed&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;</code></p>
<p>Once you&#8217;ve done that, you need to duplicate the link style for each class above&#8230;then just change the styles how you&#8217;d like them. Something like this:</p>
<p><code> .custom ul#nav li a.homelink, ul#nav li a.homelink:visited {<br />
color: #FFF;<br />
background: brown;<br />
text-decoration: none;<br />
padding: 5px 10px 5px 10px;<br />
}</code></p>
<p><code> .custom ul#nav li a.archiveslink, ul#nav li a.archiveslink:visited {<br />
color: #FFF;<br />
background: red;<br />
text-decoration: none;<br />
padding: 5px 10px 5px 10px;<br />
}</code></p>
<p><code> .custom ul#nav li a.aboutlink, ul#nav li a.aboutlink:visited {<br />
color: #FFF;<br />
background: purple;<br />
text-decoration: none;<br />
padding: 5px 10px 5px 10px;<br />
}</code></p>
<p><code> .custom ul#nav li a.sitemaplink, ul#nav li a.sitemaplink:visited {<br />
color: #FFF;<br />
background: orange;<br />
text-decoration: none;<br />
padding: 5px 10px 5px 10px;<br />
}</code></p>
<p><code> .custom ul#nav li a.feedlink, ul#nav li a.feedlink:visited {<br />
color: #FFF;<br />
background: yellow;<br />
text-decoration: none;<br />
padding: 5px 10px 5px 10px;<br />
}</code></p>
<p>Ok, so the background colors won&#8217;t look good together, but that&#8217;s your job. Hopefully this explains things clear enough for you to tackle the editing.</p>
<p>I hope this clears up some questions you all may have and, Gene, I hope this answers your question in particular. If not, feel free to leave a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://johncrenshaw.net/wordpress-themes/how-to-change-the-main-navigation-links/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cutline Mod 2.0 - New Version in the Making</title>
		<link>http://johncrenshaw.net/wordpress-themes/new-version-of-cutline-mod-theme/</link>
		<comments>http://johncrenshaw.net/wordpress-themes/new-version-of-cutline-mod-theme/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 00:27:11 +0000</pubDate>
		<dc:creator>John Crenshaw</dc:creator>
		
		<category><![CDATA[Bug Fixes]]></category>

		<category><![CDATA[Cutline Mod 2.0]]></category>

		<category><![CDATA[new version of Cutline]]></category>

		<guid isPermaLink="false">http://johncrenshaw.net/wordpress-themes/?p=15</guid>
		<description><![CDATA[I&#8217;m currently wrapping up production on version 2.0 of the Cutline Mod theme. That being my first public theme release, I&#8217;ve learned a lot; namely that what you do with your theme and what everyone else does are completely different. That small fact brought out a lot of style issues in the theme.
While I owe [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m currently wrapping up production on version 2.0 of the Cutline Mod theme. That being my first public theme release, I&#8217;ve learned a lot; namely that what you do with your theme and what everyone else does are completely different. That small fact brought out a lot of style issues in the theme.<span id="more-15"></span></p>
<p>While I owe my inspiration for that theme to Chris Pearson and his Cutline Theme, I&#8217;m completely revamping the new version from the ground up. I think everyone is really going to like this one, and I&#8217;ve really spared nothing in the process of ensuring that every single line of code functions flawlessly not only across browsers, but also regardless of how you use it.</p>
<p>Every little detail of this theme is going to be well planned and executed. I&#8217;ve even thrown in a bit of javascript here and there to spice things up a bit, but I&#8217;ve also made sure that the theme functions properly whether the user has javascript enabled or not. I&#8217;ve really gone into some depths that aren&#8217;t even explored in the Wordpress developer docs for this thing and have had to reverse engineer certain portions of Wordpress to figure out how to accomplish some of the features I thought this theme should have.</p>
<p>Seeing as how it&#8217;s going to be related to its older brother in appearance only, I&#8217;m thinking it&#8217;s time to break from the Cutline naming convention. Any ideas on the new name? Of course I guess you&#8217;d have to see it first.<br />
Expect the release within a month.</p>
]]></content:encoded>
			<wfw:commentRss>http://johncrenshaw.net/wordpress-themes/new-version-of-cutline-mod-theme/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Change the Left Side Image Size</title>
		<link>http://johncrenshaw.net/wordpress-themes/change-left-image-size/</link>
		<comments>http://johncrenshaw.net/wordpress-themes/change-left-image-size/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 21:57:39 +0000</pubDate>
		<dc:creator>John Crenshaw</dc:creator>
		
		<category><![CDATA[Images]]></category>

		<guid isPermaLink="false">http://johncrenshaw.net/wordpress-themes/?p=14</guid>
		<description><![CDATA[I&#8217;ve had several questions about how to change the size of the image along the left side of the theme&#8230;the one that says &#8220;Cutline Mod Theme.&#8221;
After I got all these questions, I realized I hadn&#8217;t quite implemented an ideal method of displaying that image&#8230;well, you live and learn. That image is in the code for [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had several questions about how to change the size of the image along the left side of the theme&#8230;the one that says &#8220;Cutline Mod Theme.&#8221;</p>
<p>After I got all these questions, I realized I hadn&#8217;t quite implemented an ideal method of displaying that image&#8230;well, you live and learn. That image is in the code for all the different page templates for the theme, of which there are 7, the blunder on my part was setting an image size in 4 of those template files and not the rest, which is probably why, if you&#8217;re having this problem, you&#8217;ve noticed the image is only sized wrong on certain pages&#8230;like I said, not exactly ideal. I&#8217;ll make sure I solve that problem in the next release of the theme. Anyway, here&#8217;s exactly what to do&#8230;</p>
<h3>Steps to Change the Left-side Image Size - Cutline Mod Theme</h3>
<p>All 4 files you need to edit have the following line of code near the top that displays that image:</p>
<pre>&lt;img src="&lt;?php bloginfo('template_url'); ?&gt;/images/sideimage.png" alt="&lt;?php bloginfo('name'); ?&gt;" title="&lt;?php bloginfo('name'); ?&gt;" width="35" height="281" /&gt;</pre>
<p>You&#8217;ll need to change the height and/or width attributes in that line to match the image you use to replace it. Here are the files you need to change:</p>
<ol>
<li>archives.php - Line 12</li>
<li>archive.php - Line 6</li>
<li>search.php - Line 6</li>
<li>index.php - Line 4</li>
</ol>
<p>That should do it. Thanks to everyone who brought this problem to my attention. This was my first Wordpress Theme release, so bear with me as I get all the kinks ironed out for the next release. Also, if you have any suggestions for the next release, leave a comment and let me know - and remind me to get that suggestion box I&#8217;ve been working on up and running!</p>
]]></content:encoded>
			<wfw:commentRss>http://johncrenshaw.net/wordpress-themes/change-left-image-size/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Valid XHTML &#38; CSS</title>
		<link>http://johncrenshaw.net/wordpress-themes/valid-xhtml-wordpress-theme/</link>
		<comments>http://johncrenshaw.net/wordpress-themes/valid-xhtml-wordpress-theme/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 05:30:55 +0000</pubDate>
		<dc:creator>John Crenshaw</dc:creator>
		
		<category><![CDATA[valid code]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://johncrenshaw.net/wordpress-themes/valid-xhtml-wordpress-theme/</guid>
		<description><![CDATA[Valid XHTML &#38; CSS really helps ensure a Wordpress theme is going to display accurately across different browsers. So, as expected from a quality Wordpress theme, the Cutline Mod Wordpress Theme validates to XHTML 1.0 Transitional and CSS 2.1.
I went ahead and used Transitional as the standard because  Strict is a bit too, well, [...]]]></description>
			<content:encoded><![CDATA[<p>Valid XHTML &amp; CSS really helps ensure a Wordpress theme is going to display accurately across different browsers. So, as expected from a quality Wordpress theme, the Cutline Mod Wordpress Theme validates to <a href="http://validator.w3.org/check?uri=referer" title="Valid XHTML 1.0 Transitional">XHTML 1.0 Transitional</a> and <a href="http://jigsaw.w3.org/css-validator/validator?uri=http://johncrenshaw.net/wordpress-themes" title="CSS Validation">CSS 2.1</a>.</p>
<p>I went ahead and used <em>Transitional </em>as the standard because  <em>Strict</em> is a bit too, well, strict. Once people make the changes they like to make to personalize the theme as their own, that Strict validation will go right out the window. <em>Transitional </em>allows a little more leeway for those who care about their themes validating so they can make some changes without worrying about throwing the whole validation thing out the window.</p>
]]></content:encoded>
			<wfw:commentRss>http://johncrenshaw.net/wordpress-themes/valid-xhtml-wordpress-theme/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Download the Cutline Mod Theme</title>
		<link>http://johncrenshaw.net/wordpress-themes/download-cutline-mod-wordpress-theme/</link>
		<comments>http://johncrenshaw.net/wordpress-themes/download-cutline-mod-wordpress-theme/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 08:26:17 +0000</pubDate>
		<dc:creator>John Crenshaw</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[cutline mod wordpress theme]]></category>

		<category><![CDATA[download]]></category>

		<guid isPermaLink="false">http://johncrenshaw.net/wordpress-themes/download-cutline-mod-wordpress-theme/</guid>
		<description><![CDATA[Click the image below to download the Cutline Mod Theme in either of 3 formats: zip, rar, or 7z.
Zip

RAR

7-Zip

]]></description>
			<content:encoded><![CDATA[<p align="center">Click the image below to download the Cutline Mod Theme in either of 3 formats: zip, rar, or 7z.</p>
<h2 align="center">Zip</h2>
<p align="center"><a href="http://johncrenshaw.net/downloads/Cutline-Mod-Wordpress-Theme.zip?utm_source=Downloads&amp;utm_medium=Downloads&amp;utm_content=Zip&amp;utm_campaign=CutlineModeTheme" title="Download Cutline Mod Wordpress Theme"><img src="http://johncrenshaw.net/wordpress-themes/wp-content/uploads/2008/03/downloadicon.png" alt="Download Cutline Mod Wordpress Theme" /></a></p>
<h2 align="center">RAR</h2>
<p align="center"><a href="http://johncrenshaw.net/downloads/Cutline-Mod-Wordpress-Theme.zip?utm_source=Downloads&amp;utm_medium=Downloads&amp;utm_content=RAR&amp;utm_campaign=CutlineModeTheme" title="Download Cutline Mod Wordpress Theme RAR"><img src="http://johncrenshaw.net/wordpress-themes/wp-content/uploads/2008/03/downloadicon.png" alt="Download Cutline Mod Wordpress Theme" /></a></p>
<h2 align="center">7-Zip</h2>
<p align="center"><a href="http://johncrenshaw.net/downloads/Cutline-Mod-Wordpress-Theme.zip?utm_source=Downloads&amp;utm_medium=Downloads&amp;utm_content=7Zip&amp;utm_campaign=CutlineModeTheme" title="Download Cutline Mod Wordpress Theme for 7-Zip"><img src="http://johncrenshaw.net/wordpress-themes/wp-content/uploads/2008/03/downloadicon.png" alt="Download Cutline Mod Wordpress Theme" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://johncrenshaw.net/wordpress-themes/download-cutline-mod-wordpress-theme/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Left Title Image</title>
		<link>http://johncrenshaw.net/wordpress-themes/left-title-image/</link>
		<comments>http://johncrenshaw.net/wordpress-themes/left-title-image/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 04:12:34 +0000</pubDate>
		<dc:creator>John Crenshaw</dc:creator>
		
		<category><![CDATA[Images]]></category>

		<category><![CDATA[left title image]]></category>

		<guid isPermaLink="false">http://johncrenshaw.net/wordpress-themes/left-title-image/</guid>
		<description><![CDATA[You&#8217;ll notice that the name of the blog goes in the sideways image to the left. The goal here was to keep the title unobtrusive, yet still visible, in order to keep the attention focused on the content rather than having a big bad title blaring right in your face.
The image is a PNG and [...]]]></description>
			<content:encoded><![CDATA[<p>You&#8217;ll notice that the name of the blog goes in the sideways image to the left. The goal here was to keep the title unobtrusive, yet still visible, in order to keep the attention focused on the content rather than having a big bad title blaring right in your face.</p>
<p>The image is a PNG and can be edited online with this killer <a href="http://interactimage.com/" title="Image creator">image creator over at interactimage.com</a>. Or, you can edit the image in Photoshop or your favorite image editing software.</p>
]]></content:encoded>
			<wfw:commentRss>http://johncrenshaw.net/wordpress-themes/left-title-image/feed/</wfw:commentRss>
		</item>
		<item>
		<title>About the Cutline Mod Wordpress Theme</title>
		<link>http://johncrenshaw.net/wordpress-themes/about-crisp-lines/</link>
		<comments>http://johncrenshaw.net/wordpress-themes/about-crisp-lines/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 00:22:19 +0000</pubDate>
		<dc:creator>John Crenshaw</dc:creator>
		
		<category><![CDATA[about]]></category>

		<category><![CDATA[crisp lines]]></category>

		<guid isPermaLink="false">http://johncrenshaw.net/wordpress-themes/?p=1</guid>
		<description><![CDATA[This is an optional excerpt for the post entitled, "About Crisp Lines for Wordpress." This post tells a bit about how this theme was developed and its inspiration.]]></description>
			<content:encoded><![CDATA[<p>You are looking at my Cutline Mod Wordpress Theme, developed by me, also known as <a href="http://johncrenshaw.net" title="Irvine Web Design">Mirage Design Works</a> and based on the <a href="http://cutline.tubetorial.com/" title="Cutline Theme for Wordpress">Cutline 1.1 theme</a> by Chris Pearson. Cutline 1.1 was used as a foundation for this theme, but much of it&#8217;s look and feel was inspired by <a href="http://www.pearsonified.com/" title="Chris Pearson">Pearsonified</a>, Chris Pearson&#8217;s own blog (thanks Chris!).</p>
]]></content:encoded>
			<wfw:commentRss>http://johncrenshaw.net/wordpress-themes/about-crisp-lines/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
