<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><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:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>ClariNerd</title>
	
	<link>http://clarinerd.com</link>
	<description>Clarinetist, web consultant, Apple enthusiast, teacher</description>
	<lastBuildDate>Fri, 18 May 2012 13:52:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/clarinerd" /><feedburner:info uri="clarinerd" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>clarinerd</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>New Post Notification</title>
		<link>http://feedproxy.google.com/~r/clarinerd/~3/Q1TrcwT_-V0/</link>
		<comments>http://clarinerd.com/blog/web-design/new-post-notification/#comments</comments>
		<pubDate>Fri, 27 Apr 2012 18:23:50 +0000</pubDate>
		<dc:creator>Sharon Murphy</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[functions.php]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[members]]></category>
		<category><![CDATA[notify]]></category>
		<category><![CDATA[twentyeleven]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://clarinerd.com/?p=1778</guid>
		<description><![CDATA[Here is a snippet of code to add to your site that will allow anyone who is a member of your site to receive an email notification whenever a new post is added. This is not a plugin; you really don&#8217;t &#8230; <a href="http://clarinerd.com/blog/web-design/new-post-notification/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here is a snippet of code to add to your site that will allow anyone who is a member of your site to receive an email notification whenever a new post is added. This is <strong>not</strong> a plugin; you really don&#8217;t need a plugin to turn this feature on.<span id="more-1778"></span></p>
<p>I did find some samples of this online, but they were too basic; simply sent an email to the member saying, &#8220;a new post has been added! Go here!&#8221; and included a generic link to the site. The one I&#8217;ve created does much more than that. Here&#8217;s a sample of the email that will be spit out once I publish this post:</p>
<blockquote>
<h2>New Post Notification</h2>
<p>Posted in <a href="http://clarinerd.com/blog/category/web-design/">Web Design</a> by Sharon Murphy on Apr 27, 2012 at 2:10pm</p>
<p><em>Here is a snippet of code to add to your site that will allow anyone who is a member of your site to <a href=" http://clarinerd.com/blog/web-design/new-post-notification/">&#8230;read more&#8230;</a></em></p></blockquote>
<p>Neat, huh? <img src='http://clarinerd.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I&#8217;ve included the code needed to create this, and I&#8217;ve also included details next to the code to explain what I&#8217;ve done to create what you see here.</p>
<ol>
<li>First thing, you&#8217;ll need your own theme. I highly recommend this, because once you make changes, if the original author posts an update and you accidentally commit the update, you&#8217;ll lose any changes you made. Go <a title="Child Themes!" href="http://clarinerd.com/blog/web-design/child-themes/">HERE</a> to get a basic child theme if you don&#8217;t have one yet.</li>
<li>Next, you need FTP access (or some other access) to allow you to open and edit the functions.php file located inside your theme directory (within wp-content/themes in your WordPress install).</li>
<li>Lastly, copy and paste the following code into your functions.php file (note: there is no closing <strong>?&gt;</strong> tag, don&#8217;t add one!):
<pre>&lt;?php

/**
* Theme specific functions and definitions
* Author: Sharon Murphy
* URL: http://clarinerd.com/blog/web-design/child-themes/
* @package WordPress
* @subpackage Twenty_Eleven
* @since Twenty Eleven 1.0
*/

function email_members($post_ID) {
  $wp_user_search = new WP_User_Query( array( 'fields' =&gt; array('user_email') ) );
  $usersarray = $wp_user_search-&gt;get_results();
  $arrUsers = array ();
  for ($arr = $usersarray, $mU = count ($arr), $iU = 0; $iU &lt; $mU; $iU++) {
    $arrUsers[] = $arr[$iU]-&gt;user_email;
  }
  $adminEmail = get_option('admin_email'); //email for admin of WordPress install
  $users = implode(",", $arrUsers); //send email to all users
  $siteLink = get_bloginfo('siteurl'); //return URL to site
  $category = get_the_category(); //category array
  $postCategory = $category[0]-&gt;cat_name; //first category name
  $catSlug = $category[0]-&gt;category_nicename; //first category slug - for permalink build
  $authorFN = get_the_author_meta(first_name, get_post($post_ID)-&gt;post_author); //author first name
  $authorLN = get_the_author_meta(last_name, get_post($post_ID)-&gt;post_author); //author last name
  $postTitle = get_post($post_ID)-&gt;post_title; //text title of post
  $postDate = mysql2date('M j, Y', get_post($post_ID)-&gt;post_date); //date posted
  $postTime = mysql2date('g:ia', get_post($post_ID)-&gt;post_date); //time posted
  $postLink = get_permalink(get_post($post_ID)); //permalink to post
  $postExcerpt = substr(get_post($post_ID)-&gt;post_content,0,144); //144-character limited excerpt of post
  add_filter('wp_mail_content_type',create_function('', 'return "text/html";'));
  wp_mail(
    $adminEmail,
    'New post: ' . $postTitle,
    '&lt;h2&gt;' . $postTitle . '&lt;/h2&gt;
    &lt;p&gt;Posted in &lt;a href="'. $siteLink . '/category/' . $catSlug . '"&gt;' . $postCategory . '&lt;/a&gt; by ' . $authorFN . ' ' . $authorLN . ' on ' . $postDate . ' at ' . $postTime . '&lt;/p&gt;
    &lt;p&gt;&lt;i&gt;' . $postExcerpt . ' &lt;a href="' . $postLink . '"&gt;...read more...&lt;/a&gt;&lt;/i&gt;&lt;/p&gt;',
    array (
      'BCC:' . $users,
      'From:' . $adminEmail
    )
  );
  return $post_ID;
}
add_action('publish_post', 'email_members');</pre>
</li>
</ol>
<p>Just as before, if you&#8217;d rather not do this yourself, I&#8217;ve got the file available for download right here:</p>
<div class="wpfilebase-attachment">
 <div class="wpfilebase-fileicon"><a href="http://clarinerd.com/download/wp-custom/new-post-notify.zip" title="Download New Post Notify"><img align="middle" src="http://clarinerd.com/wp-includes/images/crystal/archive.png" alt="New Post Notify" /></a></div>
 <div class="wpfilebase-rightcol">
  <div class="wpfilebase-filetitle">
   <a href="http://clarinerd.com/download/wp-custom/new-post-notify.zip" title="Download New Post Notify">New Post Notify</a><br />
   new-post-notify.zip<br />
   Version: 1.0<br />
   
  </div>
  <div class="wpfilebase-filedetails" id="wpfilebase-filedetails1" style="display: none;">
  <p>This ZIP file contains a functions.php file. **NOTE! THIS IS NOT A PLUGIN!!** </p>
  <table border="0">
   
   <tr><td><strong>Author:</strong></td><td>Sharon Murphy</td></tr>
   
   
   <tr><td><strong>Category:</strong></td><td>Wordpress Customizations</td></tr>
   
   <tr><td><strong>Date:</strong></td><td>April 27, 2012</td></tr>
   
  </table>
  </div>
 </div>
 <div class="wpfilebase-fileinfo">
  1.8 KiB<br />
  1 Downloads<br />
  <a href="#" onclick="return wpfilebase_filedetails(1);">Details...</a>
 </div>
 <div style="clear: both;"></div>
</div>
<p>As always, please feel free to contact me if you have problems or questions. Thanks! <img src='http://clarinerd.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://feeds.feedburner.com/~r/clarinerd/~4/Q1TrcwT_-V0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://clarinerd.com/blog/web-design/new-post-notification/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://clarinerd.com/blog/web-design/new-post-notification/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=new-post-notification</feedburner:origLink></item>
		<item>
		<title>Child Themes!</title>
		<link>http://feedproxy.google.com/~r/clarinerd/~3/4k6CFdYoZFk/</link>
		<comments>http://clarinerd.com/blog/web-design/child-themes/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 19:15:28 +0000</pubDate>
		<dc:creator>Sharon Murphy</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[child-theme]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[twentyeleven]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://clarinerd.com/?p=1772</guid>
		<description><![CDATA[Love the TwentyEleven theme that came with your WordPress install? Does it look almost like what you wanted? Did you make changes to that theme, only to have your changes overwritten when WordPress had you update to the latest release?!?! Here&#8217;s how to &#8230; <a href="http://clarinerd.com/blog/web-design/child-themes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Love the <a href="http://wordpress.org/extend/themes/twentyeleven">TwentyEleven</a> theme that came with your WordPress install? Does it look <strong>almost</strong> like what you wanted? Did you make changes to that theme, only to have your changes overwritten when WordPress had you update to the latest release?!?! Here&#8217;s how to avoid that&#8230; create a child theme!<span id="more-1772"></span></p>
<p>The easiest way to make changes to an existing theme is to create what is called a Child Theme. This is basically a sub-theme that uses all the main theme&#8217;s files <em>and</em> uses any files you include in its individual folder. That can mean adding on to an existing file (for instance, adding new functions to TwentyEleven by creating a functions.php file and adding your own stuff) or completely overwriting a file from the original theme (like including a new header.php file of our own). Here&#8217;s all you need:</p>
<ol>
<li>Create a folder inside your wp-content/themes/ directory. For the purposes of this post, I&#8217;ll call the folder &#8220;custom-2011&#8243;.</li>
<li>Inside that folder, you&#8217;ll need only one file, the style.css file. This is where you can specify what the name of the theme is and the theme to which it is linked.</li>
<li>Put this text at the top of your style.css file:
<pre>/*
Theme Name: Custom 2011
Theme URI: http://clarinerd.com/blog/web-design/child-themes/
Description: Child theme for the Twenty Eleven theme
Version: 1.0
License: GNU General Public License
License URI: license.txt
Author: Sharon Murphy
Author URI: http: //www.clarinerd.com/
Template: twentyeleven
*/
@import url("../twentyeleven/style.css");</pre>
</li>
</ol>
<p>That&#8217;s it! Everything else you want within your theme is up to you. I&#8217;ve got a few ideas around this site and there are some great options out on the internet if you search for &#8220;twentyeleven child theme&#8221;.</p>
<p>If you don&#8217;t want to have to create the directory and files listed above, a ZIP is available below:</p>
<div class="wpfilebase-attachment">
 <div class="wpfilebase-fileicon"><a href="http://clarinerd.com/download/wp-custom/custom-2011.zip" title="Download Child Theme"><img align="middle" src="http://clarinerd.com/wp-includes/images/crystal/archive.png" alt="Child Theme" /></a></div>
 <div class="wpfilebase-rightcol">
  <div class="wpfilebase-filetitle">
   <a href="http://clarinerd.com/download/wp-custom/custom-2011.zip" title="Download Child Theme">Child Theme</a><br />
   custom-2011.zip<br />
   Version: 1.0<br />
   
  </div>
  <div class="wpfilebase-filedetails" id="wpfilebase-filedetails2" style="display: none;">
  <p>This is a blank child theme. This install will get you started in creating your own (links to Twenty Eleven theme, which is required for this to work).</p>
  <table border="0">
   
   <tr><td><strong>Author:</strong></td><td>Sharon Murphy</td></tr>
   
   
   <tr><td><strong>Category:</strong></td><td>Wordpress Customizations</td></tr>
   
   <tr><td><strong>Date:</strong></td><td>April 26, 2012</td></tr>
   
  </table>
  </div>
 </div>
 <div class="wpfilebase-fileinfo">
  1.0 KiB<br />
  1 Downloads<br />
  <a href="#" onclick="return wpfilebase_filedetails(2);">Details...</a>
 </div>
 <div style="clear: both;"></div>
</div>
<p>To install, here&#8217;s what you do:</p>
<ol>
<li>Navigate to the Themes area of your Dashboard.</li>
<li>Click &#8220;Add New&#8221;.</li>
<li>Choose &#8220;Upload&#8221;.</li>
<li>Choose the ZIP file you just downloaded, and click &#8220;Install Now&#8221;.</li>
<li>Activate the theme. You&#8217;re done!</li>
</ol>
<p>Have questions? Have requests on more info concerning child themes? I&#8217;m here to help <img src='http://clarinerd.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://feeds.feedburner.com/~r/clarinerd/~4/4k6CFdYoZFk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://clarinerd.com/blog/web-design/child-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://clarinerd.com/blog/web-design/child-themes/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=child-themes</feedburner:origLink></item>
		<item>
		<title>Tricks with CSS</title>
		<link>http://feedproxy.google.com/~r/clarinerd/~3/-1UONYOZqzE/</link>
		<comments>http://clarinerd.com/blog/web-design/tricks-with-css/#comments</comments>
		<pubDate>Tue, 17 Apr 2012 14:14:59 +0000</pubDate>
		<dc:creator>Sharon Murphy</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[rounded corners]]></category>
		<category><![CDATA[text shadow]]></category>

		<guid isPermaLink="false">http://clarinerd.com/?p=1731</guid>
		<description><![CDATA[There are some really great things that can be done with stylesheets these days. For instance, I've been looking for ways to stylize buttons and small graphics, gradient backgrounds, borders, etc. so as to lighten the load on a page. Here is one example of the work I've experimented with. <a href="http://clarinerd.com/blog/web-design/tricks-with-css/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There are some really great things that can be done with stylesheets these days. For instance, I&#8217;ve been looking for ways to stylize buttons and small graphics, gradient backgrounds, borders, etc. so as to lighten the load on a page. Here is one example of the work I&#8217;ve experimented with.<span id="more-1731"></span></p>
<p>I saw a nice &#8220;download&#8221; button today, and thought I&#8217;d see if I could re-create it in CSS. Here&#8217;s the graphic:</p>
<div id="attachment_1732" class="wp-caption alignnone" style="width: 120px"><img class="size-full wp-image-1732" title="ysi_lofi_logged_out" src="http://clarinerd.com/wp-content/uploads/2012/04/b_download_grn.jpg" alt="" width="110" height="31" /><p class="wp-caption-text">Download Graphic</p></div>
<p>Next, I decided to try breaking it down into elements. There is a dark border around the item, a green gradient background, white text and a green shadow around the text. I have a few tricks for completing this:</p>
<ol>
<li>For analyzing the image, you can use your own graphics software, or go to <a href="pixlr.com" target="_blank">pixlr.com</a> and upload the image (which is what I did). The border turns out to be close to #666. The shadow on the text is close to #351. The font used looks to be Helvetica (possibly Arial) and set to bold. The width is 110px and the height is 31px.</li>
<li>The gradient is a little harder. I also have a trick for this. Inside pixlr, I cut down the image to where there is only the gradient showing (trim the border, then crop the image to just a section showing the green gradient). I use the <a href="http://www.colorzilla.com/gradient-editor/">Ultimate CSS Gradient Generator</a> - this site allows you to upload an image that contains gradient. The site will analyze the gradient and spit out the CSS-equivalent code for you.</li>
</ol>
<p>Here&#8217;s the resulting button:</p>
<div id="april172012">DOWNLOAD</div>
<p>Click the link below to download the complete HTML page, including all CSS used and a copy of the graphic used above.</p>
<div class="wpfilebase-attachment">
 <div class="wpfilebase-fileicon"><a href="http://clarinerd.com/download/download-css.zip" title="Download CSS Button Sample"><img align="middle" src="http://clarinerd.com/wp-includes/images/crystal/archive.png" alt="CSS Button Sample" /></a></div>
 <div class="wpfilebase-rightcol">
  <div class="wpfilebase-filetitle">
   <a href="http://clarinerd.com/download/download-css.zip" title="Download CSS Button Sample">CSS Button Sample</a><br />
   download-css.zip<br />
   Version: 1<br />
   
  </div>
  <div class="wpfilebase-filedetails" id="wpfilebase-filedetails3" style="display: none;">
  <p>This is a ZIP file containing an HTML page and graphic. The HTML page contains extensive CSS coding to stylize your own download button to look exactly like the included graphic.</p>
  <table border="0">
   
   <tr><td><strong>Author:</strong></td><td>Sharon Murphy</td></tr>
   
   
   
   
   <tr><td><strong>Date:</strong></td><td>April 17, 2012</td></tr>
   
  </table>
  </div>
 </div>
 <div class="wpfilebase-fileinfo">
  12.8 KiB<br />
  0 Downloads<br />
  <a href="#" onclick="return wpfilebase_filedetails(3);">Details...</a>
 </div>
 <div style="clear: both;"></div>
</div>
<img src="http://feeds.feedburner.com/~r/clarinerd/~4/-1UONYOZqzE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://clarinerd.com/blog/web-design/tricks-with-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://clarinerd.com/blog/web-design/tricks-with-css/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=tricks-with-css</feedburner:origLink></item>
		<item>
		<title>iCloud for XP</title>
		<link>http://feedproxy.google.com/~r/clarinerd/~3/JtrmyoGixPQ/</link>
		<comments>http://clarinerd.com/blog/software/icloud-for-xp/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 19:57:10 +0000</pubDate>
		<dc:creator>Sharon Murphy</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[7-zip]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iCloud]]></category>
		<category><![CDATA[Orca MSI Editor]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://clarinerd.com/?p=1720</guid>
		<description><![CDATA[With the help of this post, I've successfully installed iCloud on my Windows XP machine. Here's how. <a href="http://clarinerd.com/blog/software/icloud-for-xp/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>With the help of <a href="http://omarjallouli.com/windows/icloud-windows" target="_blank">this post</a>, I&#8217;ve successfully installed iCloud on my Windows XP machine. Here&#8217;s how.</p>
<p>I&#8217;m including instructions on how to do this yourself. However, if you&#8217;d rather just skip straight to the install, I&#8217;m including both the altered iCloud.msi and iCloud64.msi files for download at the bottom of this post.</p>
<p>First off, you&#8217;ll need the <a title="click to download" href="http://www.icloud.com/icloudcontrolpanel" target="_blank">iCloud Windows control panel</a>. Next, you&#8217;ll need a file archiver; I prefer <a href="http://www.7-zip.org/" target="_blank">7-Zip</a>. Lastly, you&#8217;ll need <a href="http://www.technipages.com/download-orca-msi-editor.html" target="_blank">Orca MSI Editor</a>.</p>
<ol>
<li>Download all programs. Install 7-Zip and Orca MSI Editor. Don&#8217;t install iCloud just yet.</li>
<li>Using 7-Zip, extract the file contents of iCloudSetup.exe You should see a file called &#8220;iCloud.msi&#8221; and one called &#8220;iCloud64.msi&#8221;, among many others.</li>
<li>Using Orca MSI Editor, open either iCloud.msi (iCloud64.msi).</li>
<li>In the editor window, you&#8217;ll see LaunchCondition in the left-hand column. Right now, it says &#8220;VersionNT = 600&#8243;. You want it to read &#8220;VersionNT = 200&#8243;. Make that change, and then save the file.</li>
<li>Now, when you open iCloud.msi (or iCloud64.msi), you should be able to complete the install! If you need instructions, they&#8217;re on the <a title="Go read the instructions!" href="http://www.apple.com/icloud/setup/pc.html" target="_blank">Apple website</a>.</li>
</ol>
<div class="wpfilebase-attachment">
 <div class="wpfilebase-fileicon"><a href="http://clarinerd.com/download/iCloudXP.zip" title="Download iCloudXP.msi"><img align="middle" src="http://clarinerd.com/wp-includes/images/crystal/archive.png" alt="iCloudXP.msi" /></a></div>
 <div class="wpfilebase-rightcol">
  <div class="wpfilebase-filetitle">
   <a href="http://clarinerd.com/download/iCloudXP.zip" title="Download iCloudXP.msi">iCloudXP.msi</a><br />
   iCloudXP.zip<br />
   Version: 1.0<br />
   
  </div>
  <div class="wpfilebase-filedetails" id="wpfilebase-filedetails4" style="display: none;">
  <p>This is the altered iCloud Windows Control Panel install for Windows XP</p>
  <table border="0">
   <tr><td><strong>Languages:</strong></td><td>English</td></tr>
   
   <tr><td><strong>Platforms:</strong></td><td>Windows XP</td></tr>
   
   
   
   <tr><td><strong>Date:</strong></td><td>April 12, 2012</td></tr>
   
  </table>
  </div>
 </div>
 <div class="wpfilebase-fileinfo">
  5.6 MiB<br />
  95 Downloads<br />
  <a href="#" onclick="return wpfilebase_filedetails(4);">Details...</a>
 </div>
 <div style="clear: both;"></div>
</div>
<div class="wpfilebase-attachment">
 <div class="wpfilebase-fileicon"><a href="http://clarinerd.com/download/iCloud64XP.zip" title="Download iCloud64XP.msi"><img align="middle" src="http://clarinerd.com/wp-includes/images/crystal/archive.png" alt="iCloud64XP.msi" /></a></div>
 <div class="wpfilebase-rightcol">
  <div class="wpfilebase-filetitle">
   <a href="http://clarinerd.com/download/iCloud64XP.zip" title="Download iCloud64XP.msi">iCloud64XP.msi</a><br />
   iCloud64XP.zip<br />
   
   
  </div>
  <div class="wpfilebase-filedetails" id="wpfilebase-filedetails5" style="display: none;">
  <p>This is the 64-bit version of the altered iCloud Windows Control Panel for Windows XP.</p>
  <table border="0">
   
   
   
   
   
   
   <tr><td><strong>Date:</strong></td><td>April 12, 2012</td></tr>
   
  </table>
  </div>
 </div>
 <div class="wpfilebase-fileinfo">
  8.2 MiB<br />
  36 Downloads<br />
  <a href="#" onclick="return wpfilebase_filedetails(5);">Details...</a>
 </div>
 <div style="clear: both;"></div>
</div>
<img src="http://feeds.feedburner.com/~r/clarinerd/~4/JtrmyoGixPQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://clarinerd.com/blog/software/icloud-for-xp/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<feedburner:origLink>http://clarinerd.com/blog/software/icloud-for-xp/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=icloud-for-xp</feedburner:origLink></item>
		<item>
		<title>TwentyEleven Vertical-Align Background Support</title>
		<link>http://feedproxy.google.com/~r/clarinerd/~3/3jQzh7q-Qsw/</link>
		<comments>http://clarinerd.com/blog/web-design/twentyeleven-vertical-align-background-support/#comments</comments>
		<pubDate>Tue, 03 Apr 2012 12:48:20 +0000</pubDate>
		<dc:creator>Sharon Murphy</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[background]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[twentyeleven]]></category>
		<category><![CDATA[vertical-align]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://clarinerd.com/?p=1708</guid>
		<description><![CDATA[Hi there! I&#8217;ve found a way to hack my current install to include vertical alignment for backgrounds, however I&#8217;d love to know how to add this to my twentyeleven child-theme. PLEASE BE AWARE THIS IS NOT FOR THE FAINT OF &#8230; <a href="http://clarinerd.com/blog/web-design/twentyeleven-vertical-align-background-support/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hi there! I&#8217;ve found a way to hack my current install to include vertical alignment for backgrounds, however I&#8217;d love to know how to add this to my twentyeleven child-theme. <strong>PLEASE BE AWARE THIS IS NOT FOR THE FAINT OF HEART!</strong> You will be altering the WordPress core code, and could ultimately break your site. I recommend making backups of any files listed here. Also, be aware that when you update, your alterations will be overwritten. Again, back up everything before starting this.<span id="more-1708"></span></p>
<p>Here&#8217;s what I did:</p>
<p>First, I altered the /wp-includes/theme.php:</p>
<p>(starting at line 1783)</p>
<p><code>/* ADDED BY SHARON MURPHY 03/30/2012 */<br />
// $position = get_theme_mod( 'background_position_x', 'left' );<br />
// if ( ! in_array( $position, array( 'center', 'right', 'left' ) ) )<br />
// $position = 'left';<br />
// $position = " background-position: top $position;";<br />
$xPosition = get_theme_mod( 'background_position_x', 'left' );<br />
if ( ! in_array( $xPosition, array( 'center', 'right', 'left' ) ) )<br />
$xPosition = 'left';<br />
$yPosition = get_theme_mod( 'background_position_y', 'top' );<br />
if ( ! in_array( $yPosition, array( 'top', 'center', 'bottom' ) ) )<br />
$yPosition = 'top';<br />
$position = " background-position: $yPosition $xPosition;";<br />
/* END ADDON BY SHARON MURPHY 03/30/2012 */</code></p>
<p>Next, I altered the /wp-admin/custom-background.php:</p>
<p>(starting at line 139)</p>
<p><code>/* ADDED BY SHARON MURPHY 03/30/2012 */<br />
// if ( isset($_POST['background-position-x']) ) {<br />
// check_admin_referer('custom-background');<br />
// if ( in_array($_POST['background-position-x'], array('center', 'right', 'left')) )<br />
// $position = $_POST['background-position-x'];<br />
// else<br />
// $position = 'left';<br />
// set_theme_mod('background_position_x', $position);<br />
// }<br />
if ( isset($_POST['background-position-x']) ) {<br />
check_admin_referer('custom-background');<br />
if ( in_array($_POST['background-position-x'], array('center', 'right', 'left')) )<br />
$xPosition = $_POST['background-position-x'];<br />
else<br />
$xPosition = 'left';<br />
set_theme_mod('background_position_x', $xPosition);<br />
}<br />
if ( isset($_POST['background-position-y']) ) {<br />
check_admin_referer('custom-background');<br />
if ( in_array($_POST['background-position-y'], array('top', 'center', 'bottom')) )<br />
$yPosition = $_POST['background-position-y'];<br />
else<br />
$yPosition = 'top';<br />
set_theme_mod('background_position_y', $yPosition);<br />
}<br />
/* END ADDON BY SHARON MURPHY 03/30/2012 */</code></p>
<p>(beginning at line 223)</p>
<p><code>// BEGIN EDIT BY SHARON MURPHY 03/30/2012<br />
// . ' background-position: top ' . get_theme_mod('background_position_x', 'left');<br />
. ' background-position: ' . get_theme_mod('background_position_y', 'top') . ' ' . get_theme_mod('background_position_x', 'left');<br />
// END EDIT BY SHARON MURPHY 03/30/2012</code></p>
<p>(beginning at line 283)</p>
<p><code>&lt;!-- BEGIN EDITS BY SHARON MURPHY 03/30/2012 --&gt;<br />
&lt;!-- &lt;tr valign="top"&gt;<br />
&lt;th scope="row"&gt;&lt;?php //_e( 'Position' ); ?&gt;&lt;/th&gt;<br />
&lt;td&gt;&lt;fieldset&gt;&lt;legend class="screen-reader-text"&gt;&lt;span&gt;&lt;?php //_e( 'Background Position' ); ?&gt;&lt;/span&gt;&lt;/legend&gt;<br />
&lt;label&gt;<br />
&lt;input name="background-position-x" type="radio" value="left"&lt;?php //checked('left', get_theme_mod('background_position_x', 'left')); ?&gt; /&gt;<br />
&lt;?php //_e('Left') ?&gt;<br />
&lt;/label&gt;<br />
&lt;label&gt;<br />
&lt;input name="background-position-x" type="radio" value="center"&lt;?php //checked('center', get_theme_mod('background_position_x', 'left')); ?&gt; /&gt;<br />
&lt;?php //_e('Center') ?&gt;<br />
&lt;/label&gt;<br />
&lt;label&gt;<br />
&lt;input name="background-position-x" type="radio" value="right"&lt;?php //checked('right', get_theme_mod('background_position_x', 'left')); ?&gt; /&gt;<br />
&lt;?php //_e('Right') ?&gt;<br />
&lt;/label&gt;<br />
&lt;/fieldset&gt;&lt;/td&gt;<br />
&lt;/tr&gt; --&gt;<br />
&lt;tr valign="top"&gt;<br />
&lt;th scope="row"&gt;&lt;?php _e( 'Horizontal Position' ); ?&gt;&lt;/th&gt;<br />
&lt;td&gt;&lt;fieldset&gt;&lt;legend class="screen-reader-text"&gt;&lt;span&gt;&lt;?php _e( 'Background Position' ); ?&gt;&lt;/span&gt;&lt;/legend&gt;<br />
&lt;label&gt;<br />
&lt;input name="background-position-x" type="radio" value="left"&lt;?php checked('left', get_theme_mod('background_position_x', 'left')); ?&gt; /&gt;<br />
&lt;?php _e('Left') ?&gt;<br />
&lt;/label&gt;<br />
&lt;label&gt;<br />
&lt;input name="background-position-x" type="radio" value="center"&lt;?php checked('center', get_theme_mod('background_position_x', 'left')); ?&gt; /&gt;<br />
&lt;?php _e('Center') ?&gt;<br />
&lt;/label&gt;<br />
&lt;label&gt;<br />
&lt;input name="background-position-x" type="radio" value="right"&lt;?php checked('right', get_theme_mod('background_position_x', 'left')); ?&gt; /&gt;<br />
&lt;?php _e('Right') ?&gt;<br />
&lt;/label&gt;<br />
&lt;/fieldset&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr valign="top"&gt;<br />
&lt;th scope="row"&gt;&lt;?php _e( 'Vertical Position' ); ?&gt;&lt;/th&gt;<br />
&lt;td&gt;&lt;fieldset&gt;&lt;legend class="screen-reader-text"&gt;&lt;span&gt;&lt;?php _e( 'Background Position' ); ?&gt;&lt;/span&gt;&lt;/legend&gt;<br />
&lt;label&gt;<br />
&lt;input name="background-position-y" type="radio" value="top"&lt;?php checked('top', get_theme_mod('background_position_y', 'top')); ?&gt; /&gt;<br />
&lt;?php _e('Top') ?&gt;<br />
&lt;/label&gt;<br />
&lt;label&gt;<br />
&lt;input name="background-position-y" type="radio" value="center"&lt;?php checked('center', get_theme_mod('background_position_y', 'top')); ?&gt; /&gt;<br />
&lt;?php _e('Center') ?&gt;<br />
&lt;/label&gt;<br />
&lt;label&gt;<br />
&lt;input name="background-position-y" type="radio" value="bottom"&lt;?php checked('bottom', get_theme_mod('background_position_y', 'top')); ?&gt; /&gt;<br />
&lt;?php _e('Bottom') ?&gt;<br />
&lt;/label&gt;<br />
&lt;/fieldset&gt;&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;!-- END EDITS BY SHARON MURPHY 03/30/2012 --&gt;</code></p>
<p>You can either do the alterations yourself, or download the files here:</p>
<div class="wpfilebase-attachment">
 <div class="wpfilebase-fileicon"><a href="http://clarinerd.com/download/wp-custom/vertical-align-background.zip" title="Download Vertical Align Background Support"><img align="middle" src="http://clarinerd.com/wp-includes/images/crystal/archive.png" alt="Vertical Align Background Support" /></a></div>
 <div class="wpfilebase-rightcol">
  <div class="wpfilebase-filetitle">
   <a href="http://clarinerd.com/download/wp-custom/vertical-align-background.zip" title="Download Vertical Align Background Support">Vertical Align Background Support</a><br />
   vertical-align-background.zip<br />
   Version: 1<br />
   
  </div>
  <div class="wpfilebase-filedetails" id="wpfilebase-filedetails6" style="display: none;">
  <p>Hi there! I've found a way to hack my current install to include vertical alignment for backgrounds, however I'd love to know how to add this to my twentyeleven child-theme. PLEASE BE AWARE THIS IS NOT FOR THE FAINT OF HEART! You will be altering the Wordpress core code, and could ultimately break your site. I recommend making backups of any files listed here. Also, be aware that when you update, your alterations will be overwritten. Again, back up everything before starting this.</p>
  <table border="0">
   
   <tr><td><strong>Author:</strong></td><td>Sharon Murphy</td></tr>
   
   
   <tr><td><strong>Category:</strong></td><td>Wordpress Customizations</td></tr>
   
   <tr><td><strong>Date:</strong></td><td>April 3, 2012</td></tr>
   
  </table>
  </div>
 </div>
 <div class="wpfilebase-fileinfo">
  35.5 KiB<br />
  3 Downloads<br />
  <a href="#" onclick="return wpfilebase_filedetails(6);">Details...</a>
 </div>
 <div style="clear: both;"></div>
</div>
<p>This works, which is great and all, but it would be wonderful if this were part of the WordPress Codex. <img src='http://clarinerd.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ol>
<li>Is there any way I can add this support to my twentyeleven child theme?</li>
<li>How do I submit this as a request for the next release?</li>
</ol>
<img src="http://feeds.feedburner.com/~r/clarinerd/~4/3jQzh7q-Qsw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://clarinerd.com/blog/web-design/twentyeleven-vertical-align-background-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://clarinerd.com/blog/web-design/twentyeleven-vertical-align-background-support/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=twentyeleven-vertical-align-background-support</feedburner:origLink></item>
		<item>
		<title>Google Chrome Apps!</title>
		<link>http://feedproxy.google.com/~r/clarinerd/~3/zjqh9_Eodw4/</link>
		<comments>http://clarinerd.com/blog/software/google-chrome-apps/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 13:13:25 +0000</pubDate>
		<dc:creator>Sharon Murphy</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://clarinerd.com/?p=1695</guid>
		<description><![CDATA[Hello all! I&#8217;m in the process of looking for ways to improve my Google Chrome experience. Do you have a favorite app? Please comment with your suggestions. Thanks!]]></description>
			<content:encoded><![CDATA[<p>Hello all! I&#8217;m in the process of looking for ways to improve my Google Chrome experience. Do you have a favorite app? Please comment with your suggestions. Thanks! <img src='http://clarinerd.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img src="http://feeds.feedburner.com/~r/clarinerd/~4/zjqh9_Eodw4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://clarinerd.com/blog/software/google-chrome-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://clarinerd.com/blog/software/google-chrome-apps/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=google-chrome-apps</feedburner:origLink></item>
		<item>
		<title>Embouchure: Winnie the Pooh</title>
		<link>http://feedproxy.google.com/~r/clarinerd/~3/tu9gQ5TIRns/</link>
		<comments>http://clarinerd.com/blog/music/embouchure-winnie-the-pooh/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 20:25:35 +0000</pubDate>
		<dc:creator>Sharon Murphy</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[clarinet]]></category>
		<category><![CDATA[embouchure]]></category>
		<category><![CDATA[mirror]]></category>

		<guid isPermaLink="false">http://clarinerd.com/?p=1641</guid>
		<description><![CDATA[This post contains basics for forming a successful clarinet embouchure. BOTTOM LIP: Stretch your lower lip against (and a little bit over) your lower teeth and make your chin “long”. EASIER: Try making an “ee” noise as in “Winnie”). Pull &#8230; <a href="http://clarinerd.com/blog/music/embouchure-winnie-the-pooh/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This post contains basics for forming a successful clarinet embouchure.</p>
<p><span id="more-1641"></span></p>
<div id="attachment_1642" class="wp-caption alignleft" style="width: 241px"><a href="http://clarinerd.com/blog/music/embouchure-winnie-the-pooh/attachment/clarinet6/" rel="attachment wp-att-1642"><img class="size-medium wp-image-1642" title="Embouchure 1" src="http://clarinerd.com/wp-content/uploads/2012/02/clarinet6-231x300.jpg" alt="Embouchure 1" width="231" height="300" /></a><p class="wp-caption-text">Embouchure 1</p></div>
<ol>
<li>BOTTOM LIP: Stretch your lower lip against (and a little bit over) your lower teeth and make your chin “long”. EASIER: Try making an “ee” noise as in “Winnie”).</li>
<li>Pull the corners of your mouth in (not out) and form a very small aperture (hole) at the center of your lips. AVOID SMILING (a smile is too wide and too tense for playing clarinet). EASIER: Keep the position from above, and try making an “oo” noise as in “Pooh”.</li>
<li>TOP LIP &amp; TEETH: Maybe you’ve noticed, but your top lip does some work too! Let your top lip push down against the top of the mouthpiece. This will help with relaxing your jaw and will give the reed some freedom.</li>
<li>AVOID: Bottom teeth cutting into your top lip (ouch!); remember to relax and let the reed vibrate (it might tickle your lip a little bit, but that is the correct way). Also, your top teeth should set on the top of the mouthpiece; don’t roll your top lip in.</li>
<li>Your embouchure should form a seal around the mouthpiece. Try playing with just the mouthpiece and barrel first. Yes it’s squeaky, yes it’ll annoy your little brother, but it’s great fun!</li>
<li><strong>The “Tickle” Factor:</strong> Your bottom lip should be low on the reed so that the reed can vibrate. You will know when your bottom lip is loose enough because the reed will tickle just a little bit. Also, your top teeth should rest firmly on the tip of the mouthpiece.</li>
</ol>
<p>Special Notes:</p>
<ul>
<li>DON’T QUIT. Just because you get frustrated doesn’t mean you should quit. Remember, even your teachers still practice this stuff!</li>
<li>PERFECT YOUR PRACTICE TIME. Practice doesn’t always make perfect, but watching yourself and paying attention to what’s happening when you play will help you to be a much better player.</li>
<li>For now, this may seem easy to form. But, when you get around to playing a sound, you may find it hard to keep this position (use a mirror and see what happens).</li>
<li>Don&#8217;t Quit: Just because you get frustrated doesn&#8217;t mean you should quit. Remember, even your teachers still practice this stuff.</li>
<li>Perfect Your Practice Time: Practice doesn&#8217;t always make perfect, but watching yourself and paying attention to what’s happening when you play will help you to be a much better player.</li>
</ul>
<img src="http://feeds.feedburner.com/~r/clarinerd/~4/tu9gQ5TIRns" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://clarinerd.com/blog/music/embouchure-winnie-the-pooh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://clarinerd.com/blog/music/embouchure-winnie-the-pooh/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=embouchure-winnie-the-pooh</feedburner:origLink></item>
		<item>
		<title>Assembling Your Clarinet</title>
		<link>http://feedproxy.google.com/~r/clarinerd/~3/bUiwnI6frn4/</link>
		<comments>http://clarinerd.com/blog/music/assembling-your-clarinet/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 20:18:24 +0000</pubDate>
		<dc:creator>Sharon Murphy</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[clarinet]]></category>

		<guid isPermaLink="false">http://clarinerd.com/?p=1639</guid>
		<description><![CDATA[This is first in a series of posts for beginner clarinetists. When Putting your Clarinet Together: Apply Cork Grease to each cork, mainly when the instrument gets ‘sticky’. Be sure no grease gets on the main body of the clarinet &#8230; <a href="http://clarinerd.com/blog/music/assembling-your-clarinet/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This is first in a series of posts for beginner clarinetists.</p>
<p><span id="more-1639"></span></p>
<p><strong>When Putting your Clarinet Together:</strong></p>
<ul>
<li>Apply Cork Grease to each cork, mainly when the instrument gets ‘sticky’. Be sure no grease gets on the main body of the clarinet (wood and keys) – you can wipe it off with a towel.</li>
<li>Push &amp; Twist: As you put each part together, gently but firmly push and twist.</li>
<li>Ligature First: Remember to put the ligature on first so you don’t chip those delicate reeds.</li>
<li>Always Have Extras: Reeds are very delicate and expensive. You can make them last longer by always placing the ligature before the reed, &amp; ALWAYS have at least 2 or 3 extra reeds in your case.</li>
</ul>
<p><strong>When Taking your Clarinet Apart:</strong></p>
<ul>
<li>Gently but firmly pull &amp; twist as you take the clarinet apart.</li>
<li>Reed First: The reed, since it is the most important piece and the most fragile, should always be placed on the instrument last and taken off first.</li>
</ul>
<p><strong>Special Notes:</strong></p>
<ul>
<li>Protect Your Reeds: Place your reeds back in its box or in reed cases. They should never be loose in your case.</li>
<li>ALWAYS Swab: This will keep moisture from ruining corks, pads, and that beautiful wood!</li>
</ul>
<img src="http://feeds.feedburner.com/~r/clarinerd/~4/bUiwnI6frn4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://clarinerd.com/blog/music/assembling-your-clarinet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://clarinerd.com/blog/music/assembling-your-clarinet/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=assembling-your-clarinet</feedburner:origLink></item>
		<item>
		<title>Baby Wall Art</title>
		<link>http://feedproxy.google.com/~r/clarinerd/~3/o-7lsUomPC8/</link>
		<comments>http://clarinerd.com/blog/arts-crafts/baby-wall-art/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 22:01:34 +0000</pubDate>
		<dc:creator>Sharon Murphy</dc:creator>
				<category><![CDATA[Arts & Crafts]]></category>
		<category><![CDATA[InDesign]]></category>

		<guid isPermaLink="false">http://sharon.clarinerd.com/?p=1574</guid>
		<description><![CDATA[I got the idea for this from Pinterest. Now that I&#8217;ve finally completed my own layout in InDesign, I&#8217;m passing this on to anyone else interested. Here&#8217;s how I went about setting this up for my daughter&#8217;s room: First, I &#8230; <a href="http://clarinerd.com/blog/arts-crafts/baby-wall-art/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div id="attachment_1626" class="wp-caption alignright" style="width: 242px"><a href="http://clarinerd.com/blog/arts-crafts/baby-wall-art/attachment/baby_wall_art/" rel="attachment wp-att-1626"><img class="size-medium wp-image-1626" title="Baby Wall Art" src="http://clarinerd.com/wp-content/uploads/2012/02/baby_wall_art-232x300.jpg" alt="Baby Wall Art" width="232" height="300" /></a><p class="wp-caption-text">Baby Wall Art</p></div>
<p>I got the idea for this from <a title="Pinterest" href="http://www.busyjordans.blogspot.com/2011/08/recreate.html" target="_blank">Pinterest</a>. Now that I&#8217;ve finally completed my own layout in InDesign, I&#8217;m passing this on to anyone else interested.<span id="more-1574"></span></p>
<p>Here&#8217;s how I went about setting this up for my daughter&#8217;s room:</p>
<ol>
<li>First, I had to decide on what colors to use. She has bedding from KidsLine, and I was able to find some decent photos online. I was able to use those as a basis for my color scheme.</li>
<li>I then uploaded the photos to <a title="colr.org" href="http://colr.org" target="_blank">colr.org</a> and had it pull out colors from the images. I wrote down the HEX colors it gave me and then translated them to RGB colors for use in InDesign (you can do this either by using the popup window at colr.org or you can go to <a href="http://www.javascripter.net/faq/hextorgb.htm" target="_blank">here</a>, which I found to be quicker).</li>
<li>Once you&#8217;ve got all that sorted, the next bit is to adjust the text to fit the areas it&#8217;s given. This is a little tricky, but basically I mostly adjusted just the font size.</li>
<li>One additional adjustment I did was to give her birth month line a little extra left-padding; otherwise, the tail end of the &#8220;J&#8221; swooped out into the margin.</li>
<li>After you&#8217;ve got your page the way you want it, export it to a high-quality PDF</li>
<li>How you print it is up to you. I&#8217;m going to try printing this at home first. However, there are plenty of good online choices for ordering prints of self-made artwork.</li>
</ol>
<p>Here is the InDesign template and the font I used. Feel free to take both.</p>
	<form method="get" id="searchform" action="">
		<label for="wpfb_s" class="assistive-text">Search</label>
		<input type="text" class="field" name="wpfb_s" id="wpfb_s" placeholder="Search" />
		<input type="submit" class="submit" name="submit" id="searchsubmit" value="Search" />
	</form>

<table>
<thead>
	<tr><th scope="col"><a href="http://clarinerd.com/feed/?wpfb_file_sort=&lt;file_name">Name</a></th><th scope="col"><a href="http://clarinerd.com/feed/?wpfb_file_sort=&lt;file_size">Size</a></th><th scope="col"><a href="http://clarinerd.com/feed/?wpfb_file_sort=&lt;file_hits">Hits</a></th></tr>
</thead>
<tfoot>
	<tr><th scope="col"><a href="http://clarinerd.com/feed/?wpfb_file_sort=&lt;file_name">Name</a></th><th scope="col"><a href="http://clarinerd.com/feed/?wpfb_file_sort=&lt;file_size">Size</a></th><th scope="col"><a href="http://clarinerd.com/feed/?wpfb_file_sort=&lt;file_hits">Hits</a></th></tr>
</tfoot>
<tbody><tr><td><a href="http://clarinerd.com/download/wp-custom/custom-2011.zip">Child Theme</a></td><td>1.0 KiB</td><td>1</td></tr><tr><td><a href="http://clarinerd.com/download/wp-custom/new-post-notify.zip">New Post Notify</a></td><td>1.8 KiB</td><td>1</td></tr><tr><td><a href="http://clarinerd.com/download/wp-custom/vertical-align-background.zip">Vertical Align Background Support</a></td><td>35.5 KiB</td><td>3</td></tr></tbody>
</table>
<div class="tablenav-pages"></div>
<img src="http://feeds.feedburner.com/~r/clarinerd/~4/o-7lsUomPC8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://clarinerd.com/blog/arts-crafts/baby-wall-art/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://clarinerd.com/blog/arts-crafts/baby-wall-art/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=baby-wall-art</feedburner:origLink></item>
		<item>
		<title>If The LOTR Characters Were Band Instruments</title>
		<link>http://feedproxy.google.com/~r/clarinerd/~3/kGDPtZ2s-aQ/</link>
		<comments>http://clarinerd.com/blog/humor/if-the-lotr-characters-were-band-instruments/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 13:33:59 +0000</pubDate>
		<dc:creator>Sharon Murphy</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[bass clarinet]]></category>
		<category><![CDATA[bassoon]]></category>
		<category><![CDATA[clarinet]]></category>
		<category><![CDATA[conductor]]></category>
		<category><![CDATA[euphonium]]></category>
		<category><![CDATA[flute]]></category>
		<category><![CDATA[horn]]></category>
		<category><![CDATA[LOTR]]></category>
		<category><![CDATA[oboe]]></category>
		<category><![CDATA[percussion]]></category>
		<category><![CDATA[saxophone]]></category>
		<category><![CDATA[trombone]]></category>
		<category><![CDATA[trumpet]]></category>
		<category><![CDATA[tuba]]></category>

		<guid isPermaLink="false">http://clarinerd.com/?p=1603</guid>
		<description />
			<content:encoded><![CDATA[<div id="attachment_1604" class="wp-caption aligncenter" style="width: 310px"><a href="http://clarinerd.com/blog/2012/02/03/if-the-lotr-characters-were-band-instruments/lotr_inst/" rel="attachment wp-att-1604"><img src="http://clarinerd.com/wp-content/uploads/2012/02/LOTR_inst-300x195.jpg" alt="If The LOTR Characters Were Band Instruments" title="If The LOTR Characters Were Band Instruments" width="300" height="195" class="size-medium wp-image-1604" /></a><p class="wp-caption-text">If The LOTR Characters Were Band Instruments</p></div>
<img src="http://feeds.feedburner.com/~r/clarinerd/~4/kGDPtZ2s-aQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://clarinerd.com/blog/humor/if-the-lotr-characters-were-band-instruments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://clarinerd.com/blog/humor/if-the-lotr-characters-were-band-instruments/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=if-the-lotr-characters-were-band-instruments</feedburner:origLink></item>
	</channel>
</rss>

