<?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>Missunderstood</title>
	<atom:link href="http://missunderstood.samdevol.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://missunderstood.samdevol.com</link>
	<description>A WordPress theme</description>
	<lastBuildDate>Sat, 01 Sep 2007 22:17:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>About missunderstood</title>
		<link>http://missunderstood.samdevol.com/2006/09/30/about-missunderstood/</link>
		<comments>http://missunderstood.samdevol.com/2006/09/30/about-missunderstood/#comments</comments>
		<pubDate>Sat, 30 Sep 2006 10:45:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[credits]]></category>

		<guid isPermaLink="false">http://sandbox.samdevol.com/?p=4</guid>
		<description><![CDATA[I saw this theme at oswd.org and set about modifying it to a WordPress theme. I left the sidebar &#8216;fixed&#8217; but changed the header and content area&#8217;s to be &#8216;fluid&#8217; (will adapt to different browser sizes). The original design is by Will Rossiter and I thought it was a good example of a dark theme [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://missunderstood.samdevol.com/wp-content/uploads/Launch.jpg" onclick="ps_imagemanager_popup(this.href,'Launch.jpg','600','450');return false" onfocus="this.blur()" title="Launch - Photo by Sam Devol &copy; 2007" rel="lightbox"><img src="http://missunderstood.samdevol.com/wp-content/uploads/.thumbs/.Launch.jpg" alt="Launch.jpg" title="Launch" class="alignright" height="72" width="96" /></a>I saw this theme at <a href="http://www.oswd.org/design/preview/id/3006" title="Link to oswd.org preview of missunderstood" rel="nofollow">oswd.org</a> and set about modifying it to a WordPress theme. I left the sidebar &#8216;fixed&#8217; but changed the header and content area&#8217;s to be &#8216;fluid&#8217; (will adapt to different browser sizes). The original design is by <a href="http://www.willr.co.nz/" title="Link to Will's site">Will Rossiter</a> and I thought it was a good example of a dark theme with a touch of grunge. Thanks Will!</p>
<p>This theme is Widget-ready and tested in WordPress 2.0 through 2.2.2. It is valid XHTML and CSS.</p>
<p>The new 0.94 version has slimbox (more efficient lightbox) built right in (click on image above to test).</p>
]]></content:encoded>
			<wfw:commentRss>http://missunderstood.samdevol.com/2006/09/30/about-missunderstood/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Displaying code and code blocks</title>
		<link>http://missunderstood.samdevol.com/2006/09/30/displaying-code-and-code-blocks/</link>
		<comments>http://missunderstood.samdevol.com/2006/09/30/displaying-code-and-code-blocks/#comments</comments>
		<pubDate>Sat, 30 Sep 2006 10:40:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://sandbox.samdevol.com/?p=5</guid>
		<description><![CDATA[One of the things that I found attractive about missunderstood was how Will handled code block display, using a background image that helped the code block stand out distinctly as code/script, with pseudo line numbering. Well, here&#8217;s an example: #content .code { color:#444; background:#F4f4f4 url(images/codenums.png) repeat-y; border:1px solid #ccc; padding:1px; padding-left:25px; font: 12px/18px "courier new", [...]]]></description>
			<content:encoded><![CDATA[<p>One of the things that I found attractive about missunderstood was how Will handled code block display, using a background image that helped the code block stand out distinctly as code/script, with pseudo line numbering. Well, here&#8217;s an example:</p>
<div class="code">
<pre>
#content .code {
color:#444;
background:#F4f4f4 url(images/codenums.png) repeat-y;
border:1px solid #ccc;
padding:1px;
padding-left:25px;
font: 12px/18px "courier new", helvetica, "times new roman", monospace;
width:470px;
margin:2px auto;
white-space:nowrap;
overflow:auto;}</pre>
</div>
<p>I had to add 1 pixel to the top and bottom of the codenums.png image to make the numbers line-up (a breeze with IrfanView, didn&#8217;t bother launching PhotoShop ;&#8217;) and use a fixed font size/style. Note that long lines are not wrapped, but scroll off to the right (should help avoid copy/paste issues).</p>
<p>This method currently requires &#8220;Use Visual Rich Editing&#8221; to be turned off (under Users:Your Profile). Here is how to put code blocks into your post: Start with a &lt;div class=&#8221;code&#8221;&gt; (will call the class style properties, beackground, etc.) immediately followed by a &lt;pre&gt;  (&#8216;pre&#8217;-formatted, to maintain original structure) so the beginning looks like this:</p>
<p>&lt;div class=&#8221;code&#8221;&gt; &lt;pre&gt;</p>
<p>Enter your code right after that:</p>
<p>&lt;div class=&#8221;code&#8221;&gt; &lt;pre&gt;<br />
if $girlfriend(&#8216;hair&#8217;) == &#8216;blonde&#8217; then {<br />
dispose($sharpobjects);<br />
} else {<br />
exit;<br />
} </p>
<p>and then close the div and pre:</p>
<p>&lt;div class=&#8221;code&#8221;&gt; &lt;pre&gt;<br />
if $girlfriend(&#8216;hair&#8217;) == &#8216;blonde&#8217; then {<br />
dispose($sharpobjects);<br />
} else {<br />
exit;<br />
}<br />
&lt;/pre&gt; &lt;/div&gt;</p>
<p>And there ya go&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://missunderstood.samdevol.com/2006/09/30/displaying-code-and-code-blocks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blockquotes and pullquotes</title>
		<link>http://missunderstood.samdevol.com/2006/09/30/blockquotes-and-pullquotes/</link>
		<comments>http://missunderstood.samdevol.com/2006/09/30/blockquotes-and-pullquotes/#comments</comments>
		<pubDate>Sat, 30 Sep 2006 10:32:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://sandbox.samdevol.com/?p=6</guid>
		<description><![CDATA[Currently I am using a css-based blockquote that looks like this: Two and two are merely four, and though often less, never more. And I, for all the world&#8217;s advance, am an upright mammal, wearing pants&#8230; -Author unkown to me In a modern browser you will see a large open-quote graphic in the top left [...]]]></description>
			<content:encoded><![CDATA[<p>Currently I am using a css-based blockquote that looks like this:</p>
<blockquote><p>Two and two are merely four, and though often less, never more.<br />
And I, for all the world&#8217;s advance, am an upright mammal, wearing pants&#8230;<br />
-Author unkown to me</p></blockquote>
<p>In a modern browser you will see a large open-quote graphic in the top left and a close-quote graphic to the bottom right of the blockquote. For IE it will degrade to a simpler vertical-bar on the left of the blockquote.</p>
<p>For pullquotes, <span class="pullquote">I usually just use a bit of css, but this does mean duplication of the text</span> (once for the post and a second time for the pullquote div). <a href="http://www.viper007bond.com/">Viper007Bond</a> wrote a simple plugin that uses JavaScript to get around the duplication issues. I have integrated the plugin with this theme (functions.php).</p>
<p>I&#8217;m adding some filler text here do you can see how it wraps around the pullquote. The styling is css based so for anyone with some basic css skills it&#8217;s pretty simple to mofify to your taste. I should note that I do attempt to contact any authors of plugins I include with my theme(s). Although not required (usually) it makes for more World Peace and Harmony. Really, it does.<br />
To use pullquotes in your posts, find the text you wish to &#8216;pull&#8217; and insert &lt;span class=&#8221;pullquote&#8221;&gt; before the text, and &lt;/span&gt; at the end. Simple as that. I can hear the strings of Harmony falling into place right now&#8230; Hear that?</p>
<p>Oh, it&#8217;s the frikkin&#8217; neighbor&#8217;s radio&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://missunderstood.samdevol.com/2006/09/30/blockquotes-and-pullquotes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>General Theme Options</title>
		<link>http://missunderstood.samdevol.com/2006/09/30/general-theme-options/</link>
		<comments>http://missunderstood.samdevol.com/2006/09/30/general-theme-options/#comments</comments>
		<pubDate>Sat, 30 Sep 2006 10:25:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://sandbox.samdevol.com/?p=14</guid>
		<description><![CDATA[I included the WordPress Theme Toolkit by Ozh for user-friendliness. This gives the user some ability to make style changes without having to muck around in the code. I have set some defaults, but feel free to play with them&#8230;]]></description>
			<content:encoded><![CDATA[<p>I included the <a href="http://frenchfragfactory.net/ozh/my-projects/wordpress-theme-toolkit-admin-menu/">WordPress Theme Toolkit</a> by <a href="http://frenchfragfactory.net/ozh/">Ozh</a> for user-friendliness. This gives the user some ability to make style changes without having to muck around in the code. I have set some defaults, but feel free to play with them&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://missunderstood.samdevol.com/2006/09/30/general-theme-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

