<?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>WPblogger &#187; Thesis Tutorials</title>
	<atom:link href="http://wpblogger.com/category/thesis-theme/tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://wpblogger.com</link>
	<description>All things WordPress</description>
	<lastBuildDate>Sun, 15 Jan 2012 23:39:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Create a &#8216;Floating&#8217; Areas in Thesis (no plugin required)</title>
		<link>http://wpblogger.com/create-floating-areas.php</link>
		<comments>http://wpblogger.com/create-floating-areas.php#comments</comments>
		<pubDate>Sat, 05 Jun 2010 09:02:49 +0000</pubDate>
		<dc:creator>Norcross</dc:creator>
				<category><![CDATA[Thesis Theme]]></category>
		<category><![CDATA[Thesis Tutorials]]></category>

		<guid isPermaLink="false">http://wpblogger.com/?p=668</guid>
		<description><![CDATA[Everyone has a few icons on their site now. Whether it&#8217;s for social media, contact info, or other ways to connect with visitors, it&#8217;s become a standard. Now the question becomes, &#8220;Where do I put them?&#8221; The sidebar seems like a logical place, but it&#8217;s already crowded as it is. So how about on the [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://wpblogger.com/create-floating-areas.php" title="Permanent link to Create a &#8216;Floating&#8217; Areas in Thesis (no plugin required)"><img class="post_image alignnone" src="http://wpblogger.com/wp-content/uploads/2010/06/levitation.jpg" width="500" height="333" alt="Creating floating icons in the Thesis theme for WordPress" /></a>
</p><p>Everyone has a few icons on their site now. Whether it&#8217;s for social media, contact info, or other ways to connect with visitors, it&#8217;s become a standard. Now the question becomes, &#8220;Where do I put them?&#8221;</p>
<p>The sidebar seems like a logical place, but it&#8217;s already crowded as it is. So how about on the side of the screen, out of everyone&#8217;s way? There are some plugins that do this, but most of the ones I&#8217;ve seen include either some Javascript, IFrames, or a similar waste of code. We can do it clean with just HTML and CSS.</p>
<p>But enough from me, let&#8217;s get onto the code!</p>
<p>(<strong>Editor&#8217;s note: </strong>This tutorial is specifically for the Thesis theme, however it can easily be applied to other themes. Enjoy!)</p>
<h2>Step 1: Decide What You&#8217;re Going To Display</h2>
<p>For this example, we&#8217;re going to set 4 separate 48px by 48px icons for Twitter, Facebook, RSS, and email. But you could also have it display a single icon or &#8216;call to action&#8217; if that&#8217;s what you want. So since we&#8217;re using icons, I&#8217;ve uploaded the 4 icons I want to use (all the same size) into the images folder in the custom directory.</p>
<h2>Step 2: Setting The Functions</h2>
<p>As usual, I like to set all my functions in a list at the beginning of my custom_functions.php file. This only requires one function, so let&#8217;s set it now.</p>
<pre lang="php">add_action('thesis_hook_after_html','social_sides'); // Adds social icons that follow the side</pre>
<h2>Step 3: Create The Links</h2>
<p>This will include the HTML we&#8217;re going to build at the very bottom of the page. Don&#8217;t worry, the CSS will put it where we want it. Here is where we are actually putting in the links and icons. Note the images aren&#8217;t linked here. They&#8217;ll be in the CSS later. Obviously, change the links for your own accounts.</p>
<pre lang="php">function social_sides() { ?&gt;</pre>
<div><a target="_blank" class="twitter" title="Follow on Twitter" href="http://twitter.com/YOURTWITTERNAME">Twitter</a> <a target="_blank" class="facebook" title="Join Us on Facebook" href="http://www.facebook.com/profile.php?id=XXXXX">Facebook</a> &lt;a href=&#8221;" class=&#8221;rss&#8221; title=&#8221;Subscribe to the RSS feed&#8221;&gt;RSS Feed <a target="_blank" class="contact" title="Contact via Email" href="mailto:johndoe@email.com">Contact</a></div>
<pre lang="php">

&lt;?php }</pre>
<p>Here I&#8217;ve set the Twitter, Facebook, RSS feed (using the built-in Thesis feed hook) and email. Nothing crazy. You can add / remove as many as you want. The important thing is the CSS in the next step.</p>
<h2>Step 4: Position via CSS</h2>
<p>There are a view pieces to the CSS setup that need to be taken into consideration.</p>
<ol>
<li>The width in each section (48px) matches the size of the icons. Doesn&#8217;t matter what size you use, they just need to match</li>
<li>The position:fixed will keep them in the same location (in this example on the very left of the screen) as the visitor scrolls down</li>
<li>The top and left percentages will dictate where they are aligned. Start with those, and play around in Firebug until you find what you like</li>
</ol>
<pre lang="css">/* Sidebar Floating icons */
.custom #side_slide {
  background:transparent;
  left:0.25%;
  position:fixed;
  top:40%;
  width:48px;
}

.custom #side_slide a {
  display:block;
  height:48px;
  text-indent:-9999px;
  padding:5px 0;
}

.custom #side_slide .twitter {background:url('images/sd_twitter.png') no-repeat 0 0;}
.custom #side_slide .facebook { background:url('images/sd_facebook.png') no-repeat 0 0;}
.custom #side_slide .rss { background:url('images/sd_feed.png') no-repeat 0 0;}
.custom #side_slide .contact { background:url('images/sd_contact.png') no-repeat 0 0;}

.custom #side_slide .twitter:hover,
.custom #side_slide .facebook:hover,
.custom #side_slide .rss:hover,
.custom #side_slide .youtube:hover,
.custom #side_slide .contact:hover {
  background-position:0 0;
}</pre>
<p>Here&#8217;s an example of it &#8220;in action&#8221;<br />
<img class="alignnone size-full wp-image-689" src="http://wpblogger.com/wp-content/uploads/2010/06/side_icons1.jpg" alt="" width="70" height="180" /><br />
That&#8217;s it! You&#8217;ll now have your contact and profile icons floating happily on the side of the screen, always available to the visitor without taking up room in the sidebar.</p>
<blockquote><p><strong>Editor&#8217;s Note:</strong> This tutorial was a guest post by <a target="_blank" href="http://andrewnorcross.com/" target="_blank">Andrew Norcross</a>. He might just be the most tattooed person I know, and that&#8217;s saying a lot. Oh yeah, he&#8217;s also a kickin web developer, WordPress designer, &amp; Thesis guru. If you need any web work done, <a target="_blank" href="http://andrewnorcross.com/hire-me/" target="_blank">you&#8217;d be lucky to hire him</a>.</p></blockquote>
<h6>image source: <a target="_blank" href="http://www.flickr.com/photos/coriehowell/3439770589/in/photostream/">Corie Howell</a></h6>
]]></content:encoded>
			<wfw:commentRss>http://wpblogger.com/create-floating-areas.php/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Adding a Featured Content Slider for Thesis (no plugin required)</title>
		<link>http://wpblogger.com/thesis-adding-content-slider-no-plugin.php</link>
		<comments>http://wpblogger.com/thesis-adding-content-slider-no-plugin.php#comments</comments>
		<pubDate>Fri, 07 May 2010 18:38:29 +0000</pubDate>
		<dc:creator>Norcross</dc:creator>
				<category><![CDATA[Thesis Theme]]></category>
		<category><![CDATA[Thesis Tutorials]]></category>

		<guid isPermaLink="false">http://wpblogger.com/?p=594</guid>
		<description><![CDATA[There are a lot of plugins out there that will create a &#8216;featured content&#8217; gallery. But if you&#8217;re anything like me, you don&#8217;t like using plugins unless you absolutely have to. I want to thank Greg Rickaby for his tutorial. However, his didn&#8217;t quite work for me, so I modified it and changed / added [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://wpblogger.com/thesis-adding-content-slider-no-plugin.php" title="Permanent link to Adding a Featured Content Slider for Thesis (no plugin required)"><img class="post_image alignnone" src="http://wpblogger.com/wp-content/uploads/2010/05/slider.jpg" width="500" height="333" alt="Content sliders can be fun..." /></a>
</p><p>There are a lot of plugins out there that will create a &#8216;featured content&#8217; gallery. But if you&#8217;re anything like me, you don&#8217;t like using plugins unless you absolutely have to. I want to thank <a target="_blank" title="Greg Rickaby" href="http://gregrickaby.com/" target="_blank">Greg Rickaby</a> for  his <a target="_blank" title="Featured Content SLider" href="http://gregrickaby.com/2010/04/how-to-create-a-featured-content-slider.html" target="_blank">tutorial</a>. However, his didn&#8217;t quite work for me, so  I modified it and changed / added a few things. So let&#8217;s roll up our sleeves a bit and do it ourselves. Let&#8217;s get started,  shall we?</p>
<h2>Step 1: Setting The Functions</h2>
<p>It&#8217;s a personal preference, but I always set my functions in a list at the beginning of my custom_functions.php file. This helps me debug issues, choose load order (when there are multiple functions using the same hook) and if need be, comment out a function without removing the code completely. So let&#8217;s do that now.</p>
<pre escaped="true" lang="php">add_action ('wp_head', 'slider_scripts'); // Adds slider scripts, etc
add_action('thesis_hook_before_content', 'featured_slider'); // Adds featured slider
</pre>
<h2>Step 2: Calling The Scripts</h2>
<p>One issue I ran into was using the default jQuery library in Thesis. They load in the footer, and for some reason that didn&#8217;t do the job. So I downloaded the libraries and manually uploaded them into a folder I labeled &#8216;js&#8217; within the custom folder. You&#8217;ll need the full jQuery library (found <a target="_blank" title="jQuery library" href="http://jquery.com/" target="_blank">here</a>) and the jQuery Cycle (found <a target="_blank" title="jQuery Cycle" href="http://jquery.malsup.com/cycle/download.html" target="_blank">here</a>). Then add the function to load them in the wp-head.</p>
<pre escaped="true" lang="php">    function slider_scripts() {
	if (is_home()) { ?&gt;
            &lt;script type="text/javascript" src="&lt;?php bloginfo('template_directory'); ?&gt;/custom/js/jquery.min.js"&gt;&lt;/script&gt;
            &lt;script type="text/javascript" src="&lt;?php bloginfo('template_directory'); ?&gt;/custom/js/jquery.cycle.all.2.72.js"&gt;&lt;/script&gt;
            &lt;script type="text/javascript"&gt;
            $(function() {
                $('#slideshow').before('&lt;div id="nav" class="nav"&gt;').cycle({
                    fx:     'fade',
                    speed:  '3000',
                    timeout: '3000',
                    pager:  '#nav',
                pause:   '0',
                fastOnEvent: '0',
                    before: function() { if (window.console) console.log(this.src); }
                });
            });
            &lt;/script&gt;
	&lt;?php } }
</pre>
<h2>Step 3: The Slider Function</h2>
<p>This is the guts of the feature. It does the following:</p>
<ul>
<li>Determines how it will grab the posts (in the example, it uses the tag &#8216;featured&#8217;)</li>
<li>Selects the number of posts it will retrieve, from the most recent going back</li>
<li>Pulls the image from the Thesis Post Image field</li>
<li>Sets the height, width, and image quality</li>
<li>Adds the post title below the post</li>
</ul>
<p><strong>The function for getting the image</strong><br />
<em>Note: this function is not required to be called in a hook, hence the reason it wasn&#8217;t included in Step 1</em></p>
<pre escaped="true" lang="php">function grabImage() {
 global $post, $posts;
 $first_img = get_post_meta($post-&gt;ID, 'thesis_post_image', true);
 return $first_img;
}
</pre>
<p><strong>The Slider itself</strong></p>
<pre escaped="true" lang="php">function featured_slider () {
if (is_home()) { ?&gt;
    &lt;div id="slideshow"&gt;
    &lt;?php $featured_loop = new WP_Query("tag=featured&amp;showposts=5");
    while ($featured_loop-&gt;have_posts()) : $featured_loop-&gt;the_post(); ?&gt;
        &lt;a href="&lt;?php the_permalink(); ?&gt;" /&gt;&lt;img src="&lt;?php echo bloginfo('template_url'); ?&gt;/lib/scripts/thumb.php?src=&lt;?php echo grabImage(); ?&gt;&amp;h=250&amp;w=630&amp;zc=1&amp;q=80" alt="&lt;?php the_title(); ?&gt;" title="&lt;?php the_title(); ?&gt;" /&gt;&lt;p&gt;&lt;?php the_title(); ?&gt;&lt;/p&gt;&lt;/a&gt;
    &lt;?php endwhile; ?&gt;
    &lt;/div&gt;
&lt;?php } }
</pre>
<h2>Step 4: Style It</h2>
<p>The CSS included can obviously be changed for your liking. A few things to keep in mind:</p>
<ul>
<li>You&#8217;ll want to make sure that the height and width under the #slideshow match what you have in the slider function itself.</li>
<li>I&#8217;ve included some rounded edges on the post numbers on the bottom of the slider</li>
<li>Make sure the bottom margin in the #slideshow is big enough to include the post title, otherwise it may get washed out.</li>
</ul>
<pre escaped="true" lang="css">#slideshow {
	height: 250px;
	width:650px;
	margin: 0 0 50px 0;
	padding-left:0;
	padding-right:0;
	}
#slideshow p{
	margin-top:0;
	color:#0b486b;
	font-size:14px;
	font-weight:600;
	}
#slideshow a img{}
.nav {margin: 0;}
#nav a {
	position: relative;
	top: 235px;
	left: 10px;
	color: #ffffff;
	margin: 0 2px;
	padding: 5px 8px;
	background: #0b486b; /* sets the bg color of the nav box */
	text-decoration: none;
	font-weight:bold;
	z-index: 9999;
 	-moz-border-radius: 5px;
	-khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
#nav a.activeSlide {background-color:#ffffff;color:#0b486b; border:1px solid #0b486b; }/* sets the bg colors of the nav box when active */
#nav a:focus {outline: none;}
</pre>
<blockquote><p><strong>Editor&#8217;s Note:</strong> This tutorial was a guest post by <a target="_blank" href="http://andrewnorcross.com/" target="_blank">Andrew Norcross</a>. He&#8217;s a self described &#8220;freelancing web monkey&#8221; from St. Petersburg, FL. I had the chance to meet Andrew at Search &amp; Social Spring Summit this week and let me tell you, he knows his stuff. I really appreciate Andrew sharing this tutorial with us and if you&#8217;re looking for a web developer, WordPress designer, or Thesis guru, <a target="_blank" href="http://andrewnorcross.com/hire-me/" target="_blank">he&#8217;s your man</a>.</p></blockquote>
<h6>image source: <a target="_blank" href="http://www.flickr.com/photos/kretyen/2843109634/" target="_blank">kretyen</a></h6>
]]></content:encoded>
			<wfw:commentRss>http://wpblogger.com/thesis-adding-content-slider-no-plugin.php/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Learn CSS Quickly &amp; Easily with Thesis</title>
		<link>http://wpblogger.com/learn-css-with-thesis.php</link>
		<comments>http://wpblogger.com/learn-css-with-thesis.php#comments</comments>
		<pubDate>Tue, 23 Jun 2009 23:32:17 +0000</pubDate>
		<dc:creator>Ben Cook</dc:creator>
				<category><![CDATA[Thesis Tutorials]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[Thesis]]></category>

		<guid isPermaLink="false">http://wpblogger.com/?p=126</guid>
		<description><![CDATA[The Thesis theme has been hailed as the most flexible WordPress Theme ever. And, given the diversity of quality designs its users have cranked out, it's tough to disagree.

The flexibility centers around the theme's unique use of a custom CSS (cascading style sheet) file so you can drastically change the look of your site by editing just one or two lines of code in one single file.

If you're an amateur (at best) web designer like myself, just reading the three letters of CSS probably sent shivers down your spine. But, while CSS can certainly be intimidating at first, Thesis actually makes it MUCH more approachable and easier to learn.

While I still wouldn't consider myself an expert, in just a few hours I was able to learn enough to create the custom design you see on this site.]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://wpblogger.com/learn-css-with-thesis.php" title="Permanent link to Learn CSS Quickly &#038; Easily with Thesis"><img class="post_image aligncenter" src="http://wpblogger.com/wp-content/uploads/2009/06/learn-css.jpg" width="500" height="310" alt="Learn CSS with the Thesis WordPress theme" /></a>
</p><p>The Thesis theme has been hailed as the most flexible WordPress Theme ever. And, given the diversity of quality designs its users have cranked out, it&#8217;s tough to disagree.</p>
<p>The flexibility centers around the theme&#8217;s unique use of a custom CSS (cascading style sheet) file so you can drastically change the look of your site by editing just one or two lines of code in one single file.</p>
<p>If you&#8217;re an amateur (at best) web designer like myself, just reading the three letters of CSS probably sent shivers down your spine. But, while CSS can certainly be intimidating at first, Thesis actually makes it MUCH more approachable and easier to learn.</p>
<p>While I still wouldn&#8217;t consider myself an expert, in just a few hours I was able to learn enough to create the custom design you see on this site.</p>
<h3>The Necessary Tools</h3>
<p>For the purpose of this tutorial you&#8217;ll obviously need to have purchased a copy of the Thesis theme. Also, I urge you to install the <a target="_blank" href="http://wordpress.org/extend/plugins/thesis-openhook/" target="_blank">Thesis OpenHook plugin</a>, as well as the <a target="_blank" href="https://addons.mozilla.org/en-US/firefox/addon/1843" target="_blank">Firebug add-on</a> for FireFox.</p>
<p>OpenHook makes it quick and easy to edit your custom CSS file from within the WordPress admin panel. Without it you&#8217;ll have to use an html editor and keep saving &amp; uploading every time you tweak something and that gets old quick.</p>
<blockquote><p><strong><span style="color: #ff0000;">Note:</span> Thesis OpenHook also allows you create and use custom functions within the hooks Thesis uses. But that&#8217;s a whole other post and both <a target="_blank" href="http://diythemes.com/thesis/how-to-customize-your-site-intelligently-with-hooks/" target="_blank">Chris</a> &amp; <a target="_blank" href="http://www.sugarrae.com/thesis-hooks-dummies-tutorial/" target="_blank">Rae</a> have done a good job of explaining hooks already. Also, Thesis 1.6 has built in functionality that allows you to edit your custom files. If you&#8217;re comfortable with PHP and using hooks, you will no longer need OpenHook, however, it&#8217;s still a great tool for those new to Thesis.<br />
</strong></p></blockquote>
<p>Firebug allows you to inspect items on any given web page and selects the corresponding CSS rules that govern that particular object. This will keep you from having to guess what rules are being applied to an object not to mention having to sort through line after line of code trying to find the answer.</p>
<p>Those two plugins saved me countless hours of work and certain frustration. If you don&#8217;t install them that&#8217;s fine, just don&#8217;t get mad at me when you put your keyboard through your flat screen display.</p>
<h3>Learning CSS</h3>
<p>Once you&#8217;ve activated your custom CSS file (which amounts to renaming the &#8220;custom-sample&#8221; folder in the stock Thesis installation to simply &#8220;custom&#8221;) any change you make in your custom.css file will be applied to your site.</p>
<p>So, how do you make those changes?</p>
<p>After activating the Thesis OpenHook plugin, you&#8217;ll see a &#8220;Thesis Custom Styling&#8221; option in the Appearance section of your left sidebar. Clicking that link will take you to a page that should look a lot like the image below that allows you to edit your custom.css file.</p>
<p><img class="aligncenter size-full wp-image-127" title="open-hook-css" src="http://wpblogger.com/wp-content/uploads/2009/06/open-hook-css.jpg" alt="thesis openhook custom styling screen" width="500" height="302" /></p>
<p>As you can see, within the developer&#8217;s comments you&#8217;re given these two quick examples of CSS stylings that you may want to employ:</p>
<blockquote><p><code>.custom a, .custom a:visited { color: #090; } &lt;--- This makes links green<br />
.custom a:hover { color: #00f; } &lt;--- This makes links blue when you mouse over them</code></p></blockquote>
<p>CSS code is divided up into 3 basic parts, the <strong>selector </strong>(the item you want to style), the <strong>property</strong>, and the <strong>value</strong>. In the first line above you&#8217;re styling links (a) and visited links (a:visited) by editing their color <strong>property </strong>to a <strong>value </strong>of #090 (green).</p>
<h3>Trial and Error</h3>
<p>Once you&#8217;ve grasped the concept of how to construct CSS stylings, my best advice is to jump right in. You could spend hours digging through <a target="_blank" href="http://www.w3schools.com/css/" target="_blank">W3Schools&#8217; article repository on CSS</a> but at least for me, trial and error is a much more effective approach.</p>
<blockquote><p><strong><span style="color: #ff0000;">Note:</span> Do keep the <a target="_blank" href="http://www.w3schools.com/css/" target="_blank">W3School articles</a> handy for quick reference should you encounter an issue that you don&#8217;t know how to deal with.</strong></p></blockquote>
<p>DIYthemes offers a quick but worthwhile tutorial on <a target="_blank" href="http://diythemes.com/thesis/rtfm/custom-backgrounds/" target="_blank">editing your background color or adding a background image</a> that was a fairly natural starting point for me.</p>
<p>Grab their code, drop it into your custom.css file and start tweaking the settings to your liking. For this site, I wound up wittling the code for my background down to the following:</p>
<blockquote><p><code>body.custom {<br />
background: #505050 url('images/bg-image.png') repeat-y scroll center center;<br />
}</code></p></blockquote>
<p>While my code looks a little different than the first example, the structure is essentially the same. My <strong>selector</strong> in this instance is the page body, and I&#8217;m styling the background <strong>property</strong> to have a <strong>value</strong> of #505050, use a background image, repeat that image along the y axis even while scrolling, and to center that background image on the page.</p>
<h3>Learn from Others</h3>
<p>The big breakthrough during my learning process came when I started looking at the sites in the <a target="_blank" href="http://diythemes.com/thesis/showcase/" target="_blank">Thesis showcase</a>.</p>
<p>When I found something I liked, I inspected it with Firebug to figure out the syntax and applied it to my site.</p>
<p>Want to know how <a target="_blank" href="http://www.chrisbrogan.com/" target="_blank">Chris Brogan</a> got that cool image to appear when you hover over links in his footer? Take a look!</p>
<p>And, with most installations of the Thesis them if you need to take a look at the entire custom.css file you can do that too by adding <code>/wp-content/themes/thesis/custom/custom.css</code> after the domain name.</p>
<blockquote><p><strong><span style="color: #ff0000;">Note:</span></strong><strong> While CSS can not be copyrighted, the look and feel of a design CAN fall under copyright laws. So don&#8217;t try to rip off someone&#8217;s entire theme. This should only be used to learn how to modify your own theme.</strong></p></blockquote>
<p>For example, want to know how I made my headlines orange and centered on the page? Using Firebug or peaking at the full style sheet you&#8217;d see this snippet of CSS:</p>
<blockquote><p><code>.custom h1, .custom h2, .custom h2 a {<br />
color: #d54e21;<br />
text-align: center;<br />
}</code></p></blockquote>
<p>Do you want orange headlines centered on your page? Probably not.</p>
<p>But now you know <span style="text-decoration: underline;"><em>how to</em></span> should you choose to do so and that, my friends, is the whole point.</p>
<h6>Original image by <a target="_blank" title="Link to Simon Pow's photostream" rel="dc:creator cc:attributionURL" href="http://www.flickr.com/photos/simonpow/"><strong>Simon Pow</strong></a></h6>
]]></content:encoded>
			<wfw:commentRss>http://wpblogger.com/learn-css-with-thesis.php/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

