

<?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>Shade Tree Sites</title>
	<atom:link href="http://www.shadetreesites.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shadetreesites.com</link>
	<description>Building Better Websites</description>
	<lastBuildDate>Wed, 01 Sep 2010 03:22:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to Use CSS to Style 2 Background Images</title>
		<link>http://www.shadetreesites.com/2010/08/how-to-use-css-to-style-2-background-images/</link>
		<comments>http://www.shadetreesites.com/2010/08/how-to-use-css-to-style-2-background-images/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 03:22:40 +0000</pubDate>
		<dc:creator>graye</dc:creator>
				<category><![CDATA[Design Tips]]></category>
		<category><![CDATA[Helpful Hints]]></category>
		<category><![CDATA[Tips & Hacks]]></category>
		<category><![CDATA[background image]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[layered]]></category>
		<category><![CDATA[multiple background images]]></category>

		<guid isPermaLink="false">http://www.shadetreesites.com/?p=878</guid>
		<description><![CDATA[Recently ran across a web design situation where I needed 2 background images, 1 layered on top of the other.  After much looking came across this solution  &#8211; use CSS to style both the html and body divides with separate background images. In my case I wanted a tiled background image with a  so I styled the html [...]]]></description>
			<content:encoded><![CDATA[<p>Recently ran across a web design situation where I needed 2 background images, 1 layered on top of the other. </p>
<p>After much looking came across this solution  &#8211; use CSS to style both the html and body divides with separate background images.</p>
<p>In my case I wanted a tiled background image with a  so I styled the html like this:</p>
<blockquote><p>html { background:url(images/bg1.png) repeat; }</p></blockquote>
<p>Wanted the other background image to appear on top of the tiled background, so I did this:</p>
<blockquote><p>body { background:url(images/bg2.png) no-repeat top center transparent; }</p></blockquote>
<p>Did the trick for me &#8211; give it a try the next time you have an occasion to.</p>
<p>Once CSS3 comes along this will be easy all you will need to do is separate each image with a comma in the body:</p>
<blockquote><p>body { background:url(images/topbg.jpg) no-repeat, url(images/middlebg.jpg) no-repeat, url(images/bottombg.jpg) repeat }</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.shadetreesites.com/2010/08/how-to-use-css-to-style-2-background-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Display a List  of Recently Updated Posts</title>
		<link>http://www.shadetreesites.com/2010/08/how-to-display-a-list-of-recently-updated-posts/</link>
		<comments>http://www.shadetreesites.com/2010/08/how-to-display-a-list-of-recently-updated-posts/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 00:00:23 +0000</pubDate>
		<dc:creator>graye</dc:creator>
				<category><![CDATA[Tips & Hacks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[recent post]]></category>
		<category><![CDATA[recently modified]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.shadetreesites.com/?p=876</guid>
		<description><![CDATA[Have been frustrated using just the recent posts widget &#8211; many times I update older posts with new information and wanted to be able to alert visitors to these updates &#8211; found this little piece of code and it does the job.  Change the number of posts to show to suit your purpose. &#60;?php $today [...]]]></description>
			<content:encoded><![CDATA[<p>Have been frustrated using just the recent posts widget &#8211; many times I update older posts with new information and wanted to be able to alert visitors to these updates &#8211; found this little piece of code and it does the job. </p>
<p>Change the number of posts to show to suit your purpose.</p>
<blockquote><p><span style="color: #900;">&lt;?php</p>
<p>$today = current_time(&#8216;mysql&#8217;, 1);<br />
$number = 5; // number of posts</p>
<p>if($recentposts = $wpdb-&gt;</span>get_results(&#8220;SELECT ID, post_title FROM $wpdb-&gt;posts WHERE post_status = &#8216;publish&#8217; AND post_modified_gmt <span style="color: #900;">&lt; &#8216;$today&#8217; ORDER BY post_modified_gmt DESC LIMIT $number&#8221;)):</p>
<p>?&gt;</span></p>
<p><span style="color: #900;">&lt;h2&gt;</span><span style="color: #900;">&lt;?php _e(&#8220;Recently Updated&#8221;); ?&gt;</span><span style="color: #900;">&lt;/h2&gt;</span><br />
<span style="color: #900;">&lt;ul&gt;</span><br />
<span style="color: #900;">&lt;?php</p>
<p>foreach($recentposts as $post) {</p>
<p>if($post-&gt;</span>post_title == &#8221;) $post-&gt;post_title = sprintf(__(&#8216;Post #%s&#8217;), $post-&gt;ID);<br />
echo &#8216;<span style="color: #900;">&lt;li&gt;</span><span style="color: #900;">&lt;a href=&#8221;&#8216;.get_permalink($post-&gt;</span>ID).&#8217;&#8221;&gt;&#8217;.the_title().&#8217;<span style="color: #900;">&lt;/a&gt;</span><span style="color: #900;">&lt;/li&gt;</span>&#8216;;</p>
<p>} ?&gt;<br />
<span style="color: #900;">&lt;/ul&gt;</span></p>
<p><span style="color: #900;">&lt;?php endif; ?&gt;</span></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.shadetreesites.com/2010/08/how-to-display-a-list-of-recently-updated-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Specific Rotating Image for a Page or Post</title>
		<link>http://www.shadetreesites.com/2010/08/specific-rotating-image-for-a-page-or-post/</link>
		<comments>http://www.shadetreesites.com/2010/08/specific-rotating-image-for-a-page-or-post/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 22:20:08 +0000</pubDate>
		<dc:creator>graye</dc:creator>
				<category><![CDATA[Tips & Hacks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[post page]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.shadetreesites.com/?p=873</guid>
		<description><![CDATA[Recently had an occasion where I needed to display a specific header on each page of a website project - came up with this after looking around and it worked for me. Put images you want to use in folder named images in your theme folder, here I called the images rotate1, 2, 3 etc but you [...]]]></description>
			<content:encoded><![CDATA[<p>Recently had an occasion where I needed to display a specific header on each page of a website project - came up with this after looking around and it worked for me.</p>
<p>Put images you want to use in folder named images in your theme folder, here I called the images rotate1, 2, 3 etc but you can call them whatever you want just change accordingly. Replace page id number with the number of the specific page you want to display the corresponding image. You can find the page id number by going to your list of pages, hover over the page and look at the bottom status bar &#8211; the page number will be in the address. No reason this wouldn&#8217;t work for posts as well.</p>
<p>You can also change name of the div from frontimage to something else &#8211; style divide accordingly in your stylesheet and change the width of the image to fit your theme.</p>
<blockquote><p><span style="color: #900;">&lt;div id=&#8221;frontimage&#8221;&gt;</span><br />
<span style="color: #900;">&lt;?php if (is_page(&#8217;88&#8242;)) { ?&gt;</span><br />
<span style="color: #900;">&lt;img src=&#8221;<span style="color: #900;">&lt;?php bloginfo(&#8216;template_url&#8217;); ?&gt;</span>/images/rotate1.jpg&#8221; width=&#8221;400&#8243; alt=&#8221;<span style="color: #900;">&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;</span> header image&#8221; /&gt;</span><br />
<span style="color: #900;">&lt;?php } elseif (is_page(&#8216;page id number here&#8217;)) { ?&gt;</span><br />
<span style="color: #900;">&lt;img src=&#8221;<span style="color: #900;">&lt;?php bloginfo(&#8216;template_url&#8217;); ?&gt;</span>/images/rotate2.jpg&#8221; width=&#8221;400&#8243; alt=&#8221;<span style="color: #900;">&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;</span> header image&#8221; /&gt;</span><br />
<span style="color: #900;">&lt;?php } elseif (is_page(&#8216;page id number here&#8217;)) { ?&gt;</span><br />
<span style="color: #900;">&lt;img src=&#8221;<span style="color: #900;">&lt;?php bloginfo(&#8216;template_url&#8217;); ?&gt;</span>/images/rotate3.jpg&#8221; width=&#8221;400&#8243; alt=&#8221;<span style="color: #900;">&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;</span> header image&#8221; /&gt;</span><br />
<span style="color: #900;">&lt;?php } elseif (is_page(&#8216;page id number here&#8217;)) { ?&gt;</span><br />
<span style="color: #900;">&lt;img src=&#8221;<span style="color: #900;">&lt;?php bloginfo(&#8216;template_url&#8217;); ?&gt;</span>/images/rotate4.jpg&#8221; width=&#8221;400&#8243; alt=&#8221;<span style="color: #900;">&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;</span> header image&#8221; /&gt;</span><br />
<span style="color: #900;">&lt;?php } elseif (is_page(&#8216;page id number here&#8217;)) { ?&gt;</span><br />
<span style="color: #900;">&lt;img src=&#8221;<span style="color: #900;">&lt;?php bloginfo(&#8216;template_url&#8217;); ?&gt;</span>/images/rotate5.jpg&#8221; width=&#8221;400&#8243; alt=&#8221;<span style="color: #900;">&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;</span> header image&#8221; /&gt;</span><br />
<span style="color: #900;">&lt;?php } elseif (is_page(&#8216;page id number here&#8217;)) { ?&gt;</span><br />
<span style="color: #900;">&lt;img src=&#8221;<span style="color: #900;">&lt;?php bloginfo(&#8216;template_url&#8217;); ?&gt;</span>/images/rotate6.jpg&#8221; width=&#8221;400&#8243; alt=&#8221;<span style="color: #900;">&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;</span> header image&#8221; /&gt;</span><br />
<span style="color: #900;">&lt;?php } elseif (is_page(&#8216;page id number here&#8217;)) { ?&gt;</span><br />
<span style="color: #900;">&lt;img src=&#8221;<span style="color: #900;">&lt;?php bloginfo(&#8216;template_url&#8217;); ?&gt;</span>/images/rotate7.jpg&#8221; width=&#8221;400&#8243; alt=&#8221;<span style="color: #900;">&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;</span> header image&#8221; /&gt;</span><br />
<span style="color: #900;">&lt;?php } elseif (is_page(&#8216;page id number here&#8217;)) { ?&gt;</span><br />
<span style="color: #900;">&lt;img src=&#8221;<span style="color: #900;">&lt;?php bloginfo(&#8216;template_url&#8217;); ?&gt;</span>/images/rotate8.jpg&#8221; width=&#8221;400&#8243; alt=&#8221;<span style="color: #900;">&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;</span> header image&#8221; /&gt;</span><br />
<span style="color: #900;">&lt;?php } elseif (is_page(&#8216;page id number here&#8217;)) { ?&gt;</span><br />
<span style="color: #900;">&lt;img src=&#8221;<span style="color: #900;">&lt;?php bloginfo(&#8216;template_url&#8217;); ?&gt;</span>/images/rotate9.jpg&#8221; width=&#8221;400&#8243; alt=&#8221;<span style="color: #900;">&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;</span> header image&#8221; /&gt;</span><br />
<span style="color: #900;">&lt;?php } else { ?&gt;</span><br />
<span style="color: #900;">&lt;img src=&#8221;<span style="color: #900;">&lt;?php bloginfo(&#8216;template_url&#8217;); ?&gt;</span>/images/rotate<span style="color: #900;">&lt;?php echo(rand(1,9)); ?&gt;</span>.jpg&#8221; width=&#8221;400&#8243; alt=&#8221;<span style="color: #900;">&lt;?php bloginfo(&#8216;name&#8217;); ?&gt;</span>&#8221; /&gt;</span><br />
<span style="color: #900;">&lt;?php } ?&gt;</span><span style="color: #900;">&lt;/div&gt;</span></p></blockquote>
<p>The above code will look for assigned image when displaying a specific page or post if none is assigned it will randomly rotate between all.  Place the above code into theme file where the image is located.  In my case this was the page.php file however might be the header.php or single.php file in others.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shadetreesites.com/2010/08/specific-rotating-image-for-a-page-or-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Custom Sidebar for Posts and Pages</title>
		<link>http://www.shadetreesites.com/2010/08/create-a-custom-sidebar-for-posts-and-pages/</link>
		<comments>http://www.shadetreesites.com/2010/08/create-a-custom-sidebar-for-posts-and-pages/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 01:04:57 +0000</pubDate>
		<dc:creator>graye</dc:creator>
				<category><![CDATA[Tips & Hacks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[wordpress tips]]></category>

		<guid isPermaLink="false">http://www.shadetreesites.com/?p=871</guid>
		<description><![CDATA[Tired of seeing the same old sidebar on every post in your blog or website here&#8217;s a way to create custom sidebar configurations and choose which to display on every post or page. To display a custom sidebar for a post or page try this: First create your new sidebar file, name it sidebar-yournamehere.php and upload into [...]]]></description>
			<content:encoded><![CDATA[<p>Tired of seeing the same old sidebar on every post in your blog or website here&#8217;s a way to create custom sidebar configurations and choose which to display on every post or page.</p>
<p>To display a custom sidebar for a post or page try this:</p>
<p>First create your new sidebar file, name it <strong>sidebar-yournamehere.php </strong>and upload into your theme folder.<br />
Easiest way to do this is copy your existing sidebar.php file, make your modifications and save with your new name.</p>
<p>In your single.php and/or page.php template replace:</p>
<blockquote><p><span style="color: #900;"><span style="color: #900;">&lt;?php get_sidebar(); ?&gt;</span> </span></p></blockquote>
<p>With this:</p>
<blockquote><p><span style="color: #900;">&lt;?php $sidebar = get_post_meta($post-&gt;</span>ID, &#8220;sidebar&#8221;, true);<br />
get_sidebar($sidebar);<br />
?&gt;</p></blockquote>
<p>The above code simply creates a new post meta field called sidebar and tells WordPress to look for a custom field called sidebar and if there is one to use the sidebar specified in that field.</p>
<p>Then when writing a post or page go to the custom field area, create a new custom field name it: <strong>  sidebar   </strong>then in the value field write   <strong>yournamehere  </strong> (the name of the new custom sidebar you created earlier or an existing custom sidebar you already created) &#8211; this will call the file <strong>sidebar-yournamehere.php </strong>for that post or page.</p>
<p>That&#8217;s it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shadetreesites.com/2010/08/create-a-custom-sidebar-for-posts-and-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updating A Theme for WordPress 3.0</title>
		<link>http://www.shadetreesites.com/2010/08/updating-a-theme-for-wordpress-3-0/</link>
		<comments>http://www.shadetreesites.com/2010/08/updating-a-theme-for-wordpress-3-0/#comments</comments>
		<pubDate>Sun, 01 Aug 2010 16:07:21 +0000</pubDate>
		<dc:creator>graye</dc:creator>
				<category><![CDATA[Tips & Hacks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[wordpress tips]]></category>

		<guid isPermaLink="false">http://www.shadetreesites.com/?p=859</guid>
		<description><![CDATA[Recently was going back through some older themes (including this one) and updating to take advantage of the new features in WordPress 3.0 &#8211; had to search around a little to find the appropriate code snippets to include figured I&#8217;d go ahead and list them out here in case anyone else was interested in doing [...]]]></description>
			<content:encoded><![CDATA[<p>Recently was going back through some older themes (including this one) and updating to take advantage of the new features in WordPress 3.0 &#8211; had to search around a little to find the appropriate code snippets to include figured I&#8217;d go ahead and list them out here in case anyone else was interested in doing the same thing.</p>
<p>Note:  You don&#8217;t have to update for a theme to work &#8211; all my older themes are working just fine without the updates - but if you would like to take advantage of some or all of the new features in your theme it&#8217;s really easy to do - just pick and choose what works for you.</p>
<p>Additional Note:  You will need to add &lt;? and &gt; at the begining and end of the snippet.</p>
<p><strong> </strong></p>
<p><strong>Navigation Menu Editor</strong> <br />
Add to functions.php:</p>
<ul>
<li>add_theme_support( &#8216;menus&#8217; );</li>
</ul>
<p>Then add  to header.php:</p>
<ul>
<li><!--p wp_nav_menu( array( 'sort_column'-->&#8216;menu_order&#8217;, &#8216;container_class&#8217; =&gt; &#8216;menu-header&#8217; ) );</li>
</ul>
<p>Note: menu-order is the css class for the menu &#8211; style accordingly in style.css</p>
<p><strong>Custom Header</strong> <strong>Management </strong><br />
Add to functions.php:</p>
<blockquote><p>define( &#8216;HEADER_IMAGE&#8217;, &#8216;%s/images/logo.png&#8217; ); // logo located in your theme folder<br />
define( &#8216;HEADER_IMAGE_WIDTH&#8217;, apply_filters( &#8221;, 770 ) ); // Width<br />
define( &#8216;HEADER_IMAGE_HEIGHT&#8217;, apply_filters( &#8221;, 153 ) ); // Height<br />
define( &#8216;NO_HEADER_TEXT&#8217;, true );<br />
add_custom_image_header( &#8221;, &#8216;admin_header_style&#8217; ); // Enables the Appearance &gt; Header<br />
// For Styling the Admin Side<br />
if ( ! function_exists( &#8216;admin_header_style&#8217; ) ) :<br />
function admin_header_style() {<br />
?&gt;<br />
<!--<br />
#headimg {<br />
height: px;<br />
width: px;<br />
}<br />
#headimg h1, #headimg #desc {<br />
display: none;<br />
}<br />
--><br />
<!--p<br-->}<br />
endif;</p></blockquote>
<p>Add php header_image(); in header.php</p>
<p><!--p header_image();--></p>
<p><strong>Automatic <img src="http://www.shadetreesites.com/wp-admin/%3C?php header_image(); ?&gt;" alt="Header Image" width="&lt;?php echo HEADER_IMAGE_WIDTH; ?&gt;" height="&lt;?php echo HEADER_IMAGE_HEIGHT; ?&gt;" />Feed Links</strong><br />
Add to functions.php.</p>
<ul>
<li>add_theme_support( &#8216;automatic-feed-links&#8217; );</li>
</ul>
<p><strong>Add Support For Post Thumbnail Images</strong><br />
Add to functions.php:</p>
<ul>
<li>add_theme_support( &#8216;post-thumbnails&#8217; );</li>
</ul>
<p>Add: php the_post_thumbnail(); to template to call the featured image.</p>
<p><!--p the_post_thumbnail();--></p>
<p><strong>Custom Backgrounds<br />
</strong>Add to functions.php</p>
<ul>
<li>add_custom_background();</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.shadetreesites.com/2010/08/updating-a-theme-for-wordpress-3-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress GPL Debate &#8211; Pearson vs Mullenweg</title>
		<link>http://www.shadetreesites.com/2010/07/wordpress-gpl-debate-pearson-vs-mullenweg/</link>
		<comments>http://www.shadetreesites.com/2010/07/wordpress-gpl-debate-pearson-vs-mullenweg/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 16:12:22 +0000</pubDate>
		<dc:creator>graye</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.shadetreesites.com/?p=836</guid>
		<description><![CDATA[In the past several days a debate has sprung up between Matt Mullenweg ( WordPress C0-Founder) and Chris Pearson (WordPress Theme Developer) over the GNU GPL License. My take on it (and my opinion &#8211; just want to make that clear): Matt Mullenweg  co-founded WordPress,  a blogging / cms platform and distributes it  under the GPL License &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>In the past several days a debate has sprung up between Matt Mullenweg ( WordPress C0-Founder) and Chris Pearson (WordPress Theme Developer) over the <a href="http://www.gnu.org/licenses/gpl.html" target="_blank">GNU GPL License</a>.</p>
<p>My take on it (and my opinion &#8211; just want to make that clear):</p>
<p><a href="http://ma.tt/" target="_blank">Matt Mullenweg </a> co-founded WordPress,  a blogging / cms platform and distributes it  under the GPL License &#8211; basically you can use and build on WordPress but if you do so and distribute it,  you must distribute under the GPL License, meaning others can then use and build on changes you have made and so on and so forth.</p>
<p><a href="http://www.pearsonified.com/" target="_blank">Chris Pearson</a> embraced the GPL License terms to his advantage and developed a WordPress theme that he sells.   Now simply selling his theme is not a problem, no one is saying that he shouldn&#8217;t profit from work he has done but,  he sells this theme based on someone else&#8217;s work , distributed under a license that he agreed to, when it suited him, but now refuses to distribute his theme under the GPL License.   His position is: sue me.</p>
<p>At first glance, it seems pretty cut and dry (although I&#8217;m not a lawyer or anything like that)  - Chris Pearson is violating the GPL License he agreed to when he built a theme based on WordPress.</p>
<p>Matt and WordPress could sue , as Chris has suggested, but the only people who really make out in lawsuits are the lawyers &#8211; he really should man up and do the right (honorable) thing and distribute his theme under the GPL License or create / develop on a platform that doesn&#8217;t use it.</p>
<p>Since it appears, at least so far, that Chris is not going to do the right thing, I would suggest that the WordPress community deal with this internally and quit using or purchasing WordPress themes that are not distributed under the GPL License &#8211; loss of income and support would, more than likely, fix the problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shadetreesites.com/2010/07/wordpress-gpl-debate-pearson-vs-mullenweg/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress 3.0 Features</title>
		<link>http://www.shadetreesites.com/2010/07/wordpress-3-0-features/</link>
		<comments>http://www.shadetreesites.com/2010/07/wordpress-3-0-features/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 03:41:43 +0000</pubDate>
		<dc:creator>graye</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[CMS]]></category>

		<guid isPermaLink="false">http://www.shadetreesites.com/?p=834</guid>
		<description><![CDATA[Well so far &#8211; so good with WordPress 3.0 &#8211; hasn&#8217;t killed any of my websites yet but on the other hand since many of the websites I have are customized I really haven&#8217;t been able to take advantage of some of the new features like the menu. Highlights (fromWordPress.org) WordPress and WordPress MU have [...]]]></description>
			<content:encoded><![CDATA[<p>Well so far &#8211; so good with WordPress 3.0 &#8211; hasn&#8217;t killed any of my websites yet but on the other hand since many of the websites I have are customized I really haven&#8217;t been able to take advantage of some of the new features like the menu.</p>
<blockquote><p><strong>Highlights (from<a href="http://wordpress.org" target="_blank">WordPress.org</a>)</strong></p>
<ul>
<li>WordPress and WordPress MU have merged, allowing the management of multiple sites (called Multisite) from one WordPress installation.</li>
<li>New default theme &#8220;Twenty Ten&#8221; takes full advantage of the current features of WordPress.</li>
<li>New Custom Menu Management feature, allows creation of custom menus combining posts, pages, categories, tags, and links for use in theme menus or widgets.</li>
<li>Custom Header and Custom Background APIs.</li>
<li>Contextual help text accessed under the Help tab of every screen in the WordPress administration.</li>
<li>Ability to set the admin username and password during installation.</li>
<li>Bulk updating of themes with an automatic maintenance mode during the process.</li>
<li>Support for Shortlinks.</li>
<li>Improved Custom Post Types and Custom Taxonomies including hierarchical (category-style) support. (Try the Custom Post Type UI or GD Custom Posts And Taxonomies</li>
<li>Tools plugins to see the possibilities.</li>
<li>A lighter admin color scheme to increase accessibility and put the focus more squarely on your content.</li>
</ul>
</blockquote>
<p>Biggies to me are:</p>
<li style="padding-left: 30px;">the merge with MU allowing for control of several sites from 1 admin &#8211; of course since mine are all over the place this will probably take some time and doing to really use but it is a great feature for future site management.</li>
<li style="padding-left: 30px;">the custom header and background &#8211; very easy to change and customize site without having to mess with the stylesheet</li>
<li style="padding-left: 30px;">menu &#8211; again assuming I don&#8217;t have a custom menu this will make working with the menu order very easy</li>
<li style="padding-left: 30px;">haven&#8217;t used yet &#8211; but like the notice of theme updates and ability to bulk update</li>
<li style="padding-left: 30px;">really like the new theme &#8211; very versatile</li>
<p>Only bug I&#8217;ve found so far is the post tags is a little finicky &#8211; sometimes drops down and sometimes doesn&#8217;t but that&#8217;s nothing to worry about.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shadetreesites.com/2010/07/wordpress-3-0-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick &amp; Easy Website Design Changes</title>
		<link>http://www.shadetreesites.com/2010/05/easy-website-design-changes/</link>
		<comments>http://www.shadetreesites.com/2010/05/easy-website-design-changes/#comments</comments>
		<pubDate>Sun, 16 May 2010 21:54:25 +0000</pubDate>
		<dc:creator>graye</dc:creator>
				<category><![CDATA[Design Tips]]></category>
		<category><![CDATA[Helpful Hints]]></category>
		<category><![CDATA[background color]]></category>
		<category><![CDATA[background image]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.shadetreesites.com/?p=828</guid>
		<description><![CDATA[With a very basic understanding of css and how it works can help you make a quick and dramatic visual re-design of  your website. First: find your css stylesheet.  If you are using WordPress, login to your admin, click the Appearance Tab in the left column, then click on Editor, then find and click  stylesheet in [...]]]></description>
			<content:encoded><![CDATA[<p>With a very basic understanding of css and how it works can help you make a quick and dramatic visual re-design of  your website.</p>
<p><strong>First: find your css stylesheet.</strong>  If you are using WordPress, login to your admin, click the Appearance Tab in the left column, then click on Editor, then find and click  stylesheet in the list on the right.</p>
<p>Toward the top of the stylesheet you should see a section called body: (should look something like this)</p>
<blockquote><p>body {<br />
 font-size: 12px;<br />
 font-family: &#8216;Arial&#8217;, Verdana, Sans-Serif;<br />
 background-image: #ffffff url(images/bg.jpg);<br />
 background-color: #011329;<br />
 color: #ffffff;<br />
 }</p></blockquote>
<p>Now it&#8217;s pretty easy to make some site wide quick visual changes &#8211; I&#8217;ll just start at the top and work my way down:</p>
<p><strong>1.  font-size</strong>- size of content text for your site (does not effect your headline or title size&#8217;s) you can easily increase or decrease by changing the number before the px.  (for example: 14px will increase the font size while 10px will decrease the font (text))</p>
<p><strong>2. font-family</strong>- this is the actual font used on your website in order of importance.  In this instance the first choice for the browser is Arial, if not available then Verdana and so on and so forth.  Simply Add a new font to the beginning of the string or change the existing names to one you prefer.  Just a note:  not all fonts are available to all users so if you choose a less popular font and your visitors do not have that font on their computer it will not display properly.  Always have a backup web safe font choice just in case. </p>
<p>To test or choose a font try this site: <a href="http://www.fonttester.com/web_safe_fonts.html">http://www.fonttester.com/web_safe_fonts.html</a></p>
<p><strong>3. background-image</strong>- in this example the theme is using a background image called bg.jpg located in the theme folder called images &#8211; to change it create and upload another image to your theme in the folder called images.  (You will need ftp or control panel access to do this) </p>
<p>Example:  If your new image is called mybg.jpg &#8211; change bg.jpg to mybg.jpg and it&#8217;s done.  If you don&#8217;t think you&#8217;ll ever use the original bg.jpg image just name your new image the same and upload and overwrite the old image &#8211; now you don&#8217;t have to change anything and will have a new background image.</p>
<p>Now if you have a small image that you would like to tile - do nothing it will automatically tile the image vertically and horizontally. </p>
<p> However, if you only want it to tile horizontally or vertically or not tile at all you will need to add another condition called background-repeat just under background-image.</p>
<blockquote><p>background-repeat: no repeat; &#8211; image will not tile<br />
background-repeat:repeat-x; -   tile -  horizontally<br />
background-repeat:repeat-y; -   tile - vertically</p></blockquote>
<p><span style="color: #ff0000;">Info:  a small image tiled will load faster than 1 large background image.</span></p>
<p><strong>4. background-color</strong>- colors are numeric this particular color is using  hexadecimal (6 digit) color codes.  To find the code for the color -  find a color chart.</p>
<blockquote><p>here&#8217;s one: <a href="http://html-color-codes.com/">http://html-color-codes.com/</a></p></blockquote>
<p>locate the color you want and the corresponding 6 digit number then change the number &#8211; it&#8217;s that simple.</p>
<p><strong>5. color</strong> &#8211; this is refers to the color of the text on your site &#8211; again find the color you want and change the number</p>
<p>The stylesheet gives you many more options to change but by changing some of  these basic rules you can make some very dramatic and quick changes to the look of your site. </p>
<p>Give it a try &#8211; it&#8217;s easy!</p>
<p><span style="color: #ff0000;">Note: After making changes make sure to save the changes and update your browser to see the changes.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shadetreesites.com/2010/05/easy-website-design-changes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Updating WordPress and Plugins</title>
		<link>http://www.shadetreesites.com/2010/04/updating-wordpress-and-plugins/</link>
		<comments>http://www.shadetreesites.com/2010/04/updating-wordpress-and-plugins/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 03:30:32 +0000</pubDate>
		<dc:creator>graye</dc:creator>
				<category><![CDATA[Tips & Hacks]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[updating]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.shadetreesites.com/?p=822</guid>
		<description><![CDATA[As WordPress continues to roll out updates it&#8217;s becoming increasing common for some plugins to fail to survive the update.  Early on I was in a habit of immediately updating my sites as soon as the newest version of WordPress rolled out.  Then during one update a plugin that was critical to the operation of [...]]]></description>
			<content:encoded><![CDATA[<p>As WordPress continues to roll out updates it&#8217;s becoming increasing common for some plugins to fail to survive the update.  Early on I was in a habit of immediately updating my sites as soon as the newest version of WordPress rolled out.  Then during one update a plugin that was critical to the operation of the site broke causing a mad dash to find a replacement or lose the primary function of the site.</p>
<p>My solution:  test sites.  I have test sites for any website that uses plugins as a means to an end.  My advice if you can&#8217;t live without a plugin test, test, test prior to just blindly updating to the newest version of WordPress or do your research and have a backup plugin ready, in case your favorite plugin doesn&#8217;t make the transition.</p>
<p>Another issue I&#8217;ve run across is updating a plugin and having it break the theme. </p>
<p>I realize not everyone has the luxury of multiple tests sites running just to test plugins and themes so just as they suggest: backup everything prior to updating anything and be prepared.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shadetreesites.com/2010/04/updating-wordpress-and-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CIRCA WHO</title>
		<link>http://www.shadetreesites.com/2010/03/circa-who/</link>
		<comments>http://www.shadetreesites.com/2010/03/circa-who/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 02:48:40 +0000</pubDate>
		<dc:creator>graye</dc:creator>
				<category><![CDATA[Site Portfolio]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[custom field]]></category>
		<category><![CDATA[custom pages]]></category>
		<category><![CDATA[custom posts]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.shadetreesites.com/?p=805</guid>
		<description><![CDATA[Just finished a website re-design  for Circa Who   Circa Who is a resale shop selling trendy vintage and modern furniture and needed a site that would showcase images of their vast one of a kind inventory while also reflecting the personality of the shop.  This site is a heavily customized wordpress installation based on the 960 [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">Just finished a website re-design  for<a href="http://circawho.com" target="_blank"> <strong>Circa Who</strong></a></p>
<p style="text-align: center;"><img class="aligncenter size-medium wp-image-807" title="Circawho Screenshot" src="http://www.shadetreesites.com/wp-content/uploads/2010/02/Circawho-Screenshot-300x167.jpg" alt="" width="300" height="167" /></p>
<p> </p>
<p>Circa Who is a resale shop selling trendy vintage and modern furniture and needed a site that would showcase images of their vast one of a kind inventory while also reflecting the personality of the shop.  This site is a heavily customized wordpress installation based on the 960 grid system at it&#8217;s core and uses custom page templates, custom post templates and custom fields to create a visually unique, easily navigated website that represents the character of the shop and allows for quick and easy additions of new merchandise.</p>
<p>Have a look at the site and if you are in the area visit the shop:  <a href="http://circawho.com" target="_blank"><strong>Circa Who</strong></a>, 531 Northwood Road, West Palm Beach, Florida  33407.</p>
<p>If you need a website or a website re-design I&#8217;d be more than happy to hear about your project and work with you.  <a href="mailto:graye@shadetreesites.com">Contact ME</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.shadetreesites.com/2010/03/circa-who/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
