<?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>WP Addict &#187; Freebies</title>
	<atom:link href="http://wpaddict.net/category/freebies/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpaddict.net</link>
	<description>Get Your WordPress fix here</description>
	<lastBuildDate>Fri, 23 Jul 2010 20:35:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Custom Thesis Theme #1: Blue Simplicity</title>
		<link>http://wpaddict.net/custom-thesis-theme-1-blue-simplicity/</link>
		<comments>http://wpaddict.net/custom-thesis-theme-1-blue-simplicity/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 20:29:53 +0000</pubDate>
		<dc:creator>Nile</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Thesis]]></category>

		<guid isPermaLink="false">http://wpaddict.net/?p=284</guid>
		<description><![CDATA[There really are not that many custom Thesis themes out there. Of course, they are also known as skins. For me, I like to use the custom CSS, the custom configuration file, and also Thesis OpenHook. My first custom Thesis &#8220;skin&#8221; is more of a step by step tutorial. So, before I go into this tutorial, here is what the result SHOULD look like. Plugin installed for the navigation is WP-PageNavi. Layout includes an author&#8217;s [...]


Related posts:<ol><li><a href='http://wpaddict.net/making-a-two-tiered-navigation-in-wordpress/' rel='bookmark' title='Permanent Link: Making A Two-Tiered Navigation in WordPress'>Making A Two-Tiered Navigation in WordPress</a></li>
<li><a href='http://wpaddict.net/brand-your-wordpress-login-without-a-plugin/' rel='bookmark' title='Permanent Link: Brand Your WordPress Login Without A Plugin'>Brand Your WordPress Login Without A Plugin</a></li>
<li><a href='http://wpaddict.net/thesis-theme-review/' rel='bookmark' title='Permanent Link: Thesis Theme Review'>Thesis Theme Review</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>There really are not that many custom Thesis themes out there. Of course, they are also known as skins. For me, I like to use the custom CSS, the custom configuration file, and also Thesis OpenHook.</p>
<p>My first custom Thesis &#8220;skin&#8221; is more of a step by step tutorial. So, before I go into this tutorial, here is what the result SHOULD look like. Plugin installed for the navigation is WP-PageNavi. Layout includes an author&#8217;s box and a simple custom comment area.</p>
<p><a href="http://wpaddict.net/wp-content/uploads/2010/06/bluesimplicity-thesis-screenshot.png"><img src="http://wpaddict.net/wp-content/uploads/2010/06/bluesimplicity-thesis-screenshot-small-300x187.png" alt="" title="bluesimplicity-thesis-screenshot-small" width="300" height="187" class="aligncenter size-medium wp-image-354" /></a></p>
<p>(Right click on image to open larger screenshot preview)</p>
<p>This tutorial is a bit long, so I broke it into 6 parts. It really does not matter what order, but this was the order I thought would be best. You are welcome to adjust whatever you wish. </p>
<p>Here is the download link for the images included with this simple skin/ theme.</p>
<p><span id="more-284"></span></p>
<h4><a class="downloadlink" href="http://wpaddict.net/wp-content/plugins/download-monitor/download.php?id=10" title="Version1.0 downloaded 10 times" >Blue Simplicity Thesis Skin Files (10)</a></h4>
<h4>1. Adjusting Site Options</h4>
<ul>
<li>a. Header: make sure not to check both boxes to show header and tagline</li>
<li>b. Feed Link in Nav Menu: make sure not to check box to show feed in nav menu</li>
</ul>
<h4>2. Adjusting Design Options</h4>
<ul>
<li>a. Body and Content: select Arial</li>
<li>b. Nav Menu: In the field for nav border width (px), enter 0</li>
<li>c. HTML Framework: select Page framework</li>
<li>d. Outer Page Padding: select 1.0</li>
<li>e. Columns: select 2 and specify 700 for content and 300 for sidebar (1000px width)</li>
<li>f. Column Order: select Content, Sidebar 1 </li>
<li>g. Multimedia Box &#8211; select option to not show multimedia box</li>
</ul>
<h4>3. custom_functions.php</h4>
<p><code><br />
function cat_nav() { ?&gt;<br />
    &lt;ul id=&quot;cat_tabs&quot;&gt;<br />
        &lt;?php wp_list_categories('title_li='); ?&gt;<br />
    &lt;/ul&gt;<br />
&lt;?php }<br />
add_action('thesis_hook_after_header','cat_nav');<br />
remove_action('thesis_hook_footer', 'thesis_attribution');</p>
<p>function post_footer_author() {<br />
if (is_single())<br />
{ ?&gt;<br />
&lt;div class=&quot;postauthor&quot;&gt;<br />
&lt;?php echo get_avatar( get_the_author_id() , 100 ); ?&gt;<br />
&lt;h4&gt;Article by &lt;a href=&quot;&amp;lt;?php the_author_url(); ?&gt;&quot;&gt;<br />
&lt;?php the_author_firstname(); ?&gt; &lt;?php the_author_lastname(); ?&gt;&lt;/a&gt;&lt;/h4&gt;<br />
&lt;p&gt;&lt;?php the_author_description(); ?&gt;&lt;/p&gt;<br />
&lt;p class=&quot;hlight&quot;&gt;&lt;?php the_author_firstname(); ?&gt; has written &lt;span&gt;&lt;?php the_author_posts(); ?&gt;&lt;/span&gt; awesome articles.&lt;/p&gt;&lt;p&gt;If you like This post, you can follow this author at on &lt;a href=&quot;http://www.twitter.com/&quot;&gt;&lt;b&gt;Twitter&lt;/b&gt;&lt;/a&gt;.&lt;/p&gt;<br />
&lt;p&gt;Subscribe to this websites feed via &lt;a href=&quot;#&quot;&gt;&lt;b&gt;RSS&lt;/b&gt;&lt;/a&gt; or &lt;a href=&quot;/contact/&quot; target=&quot;_blank&quot;&gt;&lt;b&gt;EMAIL&lt;/b&gt;&lt;/a&gt; to receive instant updates.&lt;/p&gt;<br />
&lt;/div&gt;<br />
&lt;?php }<br />
}<br />
add_action('thesis_hook_after_post_box', 'post_footer_author');<br />
function custom_search() {</p>
<p>	// Enter your custom search text here<br />
	$searchtext = &quot;Your search custom text&quot;;<br />
	// Enter your custom submit text here<br />
	$submittext = &quot;Your submit custom text&quot;;</p>
<p>?&gt;</p>
<p>function custom_bookmark_links() {<br />
	global $post;<br />
?&gt;<br />
&lt;ul class=&quot;bookmark_links&quot;&gt;<br />
	&lt;li&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;http://delicious.com/save?url=&lt;?php urlencode(the_permalink()); ?&gt;&amp;amp;title=&lt;?php urlencode(the_title()); ?&gt;&quot; onclick=&quot;window.open('http://delicious.com/save?v=5&amp;amp;noui&amp;amp;jump=close&amp;amp;url=&lt;?php urlencode(the_permalink()); ?&gt;&amp;amp;title=&lt;?php urlencode(the_title()); ?&gt;', 'delicious', 'toolbar=no,width=550,height=550'); return false;&quot; title=&quot;Bookmark this post on del.icio.us&quot;&gt;Bookmark this article on Delicious&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;?php<br />
}</p>
<p></code></p>
<h4>4. Openhook</h4>
<p><strong>a. WP Head</strong> &#8211; Cufon font replacement (I have included the font file in the zip file along with the javascript files necessary to replace the text.)</p>
<p><code><br />
&lt;script src=&quot;&lt;?=bloginfo('template_url')?&gt;/js/cufon-yui.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;<br />
&lt;script src=&quot;&lt;?=bloginfo('template_url')?&gt;/js/cufon-replace.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;<br />
&lt;script src=&quot;&lt;?=bloginfo('template_url')?&gt;/js/Eras_400.font.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;<br />
&lt;script type=&quot;text/javascript&quot;&gt;<br />
			Cufon.replace('h2');<br />
		&lt;/script&gt;<br />
&lt;script type=&quot;text/javascript&quot;&gt;<br />
			Cufon.replace('h3');<br />
		&lt;/script&gt;<br />
&lt;script type=&quot;text/javascript&quot;&gt;<br />
			Cufon.replace('h4');<br />
		&lt;/script&gt;</p>
<p></code></p>
<p><strong>b. Before Header</strong> &#8211; After inserting the following code, please check the boxes to remove the thesis nav menu and to Execute the PHP.</p>
<p><code><br />
&lt;div id=&quot;customthesisheader&quot;&gt;&lt;div id=&quot;thesissearchform&quot;&gt;&lt;?php thesis_search_form(); ?&gt;&lt;/div&gt;&lt;/div&gt;<br />
&lt;div id=&quot;customlogoarea&quot;&gt;&lt;?php if  ( file_exists( TEMPLATEPATH . '/custom/images/logo.png' ) ) { ?&gt;<br />
  &lt;a href=&quot;&lt;?php echo get_settings('home'); ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php bloginfo('template_url'); ?&gt;/custom/images/logo.png&quot; alt=&quot;&lt;?php bloginfo('name'); ?&gt;&quot; /&gt;&lt;/a&gt;<br />
  &lt;?php } else { ?&gt;<br />
  &lt;h1&gt;&lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;&quot;&gt;&lt;?php bloginfo('name'); ?&gt;&lt;/a&gt;&lt;/h1&gt;<br />
&lt;? } ?&gt;<br />
&lt;/div&gt;<br />
</code></p>
<p><strong>c. After Header</strong> &#8211; After applying the following code, check mark the box to Execute the PHP.</p>
<p><code><br />
&lt;?php thesis_nav_menu(); ?&gt;<br />
</code></p>
<p><strong>d. After Content</strong> &#8211; After applying the following code, please remember to check mark all the boxes to execute the PHP in the hook, remove the post navigation, and to remove the next and previous thesis hook. (Remember you are using WP-PageNavi.)</p>
<p><code><br />
&lt;div style=&quot;clear: both;&quot;&gt;&lt;/div&gt;<br />
&lt;div id=&quot;customwpnavi&quot;&gt;<br />
&lt;?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); }<br />
else { ?&gt;<br />
      &lt;div class=&quot;pagination&quot;&gt;<br />
         &lt;div class=&quot;alignleft&quot;&gt;&lt;?php next_posts_link('&amp;laquo; Older Entries') ?&gt;&lt;/div&gt;<br />
         &lt;div class=&quot;alignright&quot;&gt;&lt;?php previous_posts_link('Newer Entries &amp;raquo;') ?&gt;&lt;/div&gt;<br />
      &lt;/div&gt;<br />
&lt;?php } ?&gt;&lt;/div&gt;</p>
<p></code></p>
<h4>5. Widgetized Footers &#8211; Look for launch.php in your lib/functions folder. Open and insert at the bottom of the file.</h4>
<p><code></p>
<p>/*---------------------------------*/<br />
/* WIDGETIZED FOOTER - 3 COLUMNS   */</p>
<p>/* register sidebars for widgetized footer */<br />
if (function_exists('register_sidebar')) {<br />
 $sidebars = array(1, 2, 3);<br />
 foreach($sidebars as $number) {<br />
 register_sidebar(array(<br />
 'name' =&gt; 'Footer ' . $number,<br />
 'id' =&gt; 'footer-' . $number,<br />
 'before_widget' =&gt; '',<br />
 'after_widget' =&gt; '',<br />
 'before_title' =&gt; '&lt;h3&gt;',<br />
 'after_title' =&gt; '&lt;/h3&gt;'<br />
 ));<br />
 }<br />
}</p>
<p>/*-----------------------*/<br />
/* set up footer widgets */<br />
function widgetized_footer() {<br />
?&gt;<br />
 &lt;div id=&quot;footer_setup&quot;&gt;</p>
<p> &lt;div class=&quot;footer_items&quot;&gt;<br />
 &lt;?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer 1') ) : ?&gt;<br />
 &lt;?php endif; ?&gt;<br />
 &lt;/div&gt;</p>
<p> &lt;div class=&quot;footer_items&quot;&gt;<br />
 &lt;?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer 2') ) : ?&gt;<br />
 &lt;?php endif; ?&gt;<br />
 &lt;/div&gt;</p>
<p> &lt;div class=&quot;footer_items&quot;&gt;<br />
 &lt;?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer 3') ) : ?&gt;<br />
 &lt;?php endif; ?&gt;<br />
 &lt;/div&gt;</p>
<p> &lt;/div&gt;<br />
&lt;?php<br />
}</p>
<p>add_action('thesis_hook_footer','widgetized_footer');</p>
<p></code></p>
<h4>6. custom.css</h4>
<p><code><br />
body {</p>
<p>background:#444546 url(images/bg.png) repeat-x;<br />
}</p>
<p>.custom #customthesisheader {<br />
width:1000px;<br />
margin-left:auto;<br />
margin-right:auto;<br />
background:url(images/top-img-bg.png) no-repeat;<br />
height:150px;<br />
margin-top:-30px;<br />
}</p>
<p>.custom #customlogoarea {<br />
width:1000px;<br />
margin-left:auto;<br />
margin-right:auto;<br />
margin-top:-135px;</p>
<p>}</p>
<p>.custom #thesissearchform {<br />
	float:right;<br />
margin-top:30px;<br />
}</p>
<p>.custom .search_form {<br />
	width: 275px;<br />
height: 40px;<br />
background: url(images/search-bg-img.png)no-repeat;<br />
margin-top: -22px;<br />
}</p>
<p>.custom .text_input {<br />
	width: 225px;<br />
height: 20px;<br />
margin-top:8px;<br />
margin-left: 20px;<br />
border: 2px solid #23468E;<br />
font-size:12px;<br />
padding-left:3px;</p>
<p>}</p>
<p>.custom #container {<br />
	margin-bottom:10px;<br />
}<br />
.custom #page {<br />
	padding-bottom:1px;<br />
}</p>
<p>.custom .menu {<br />
margin-left:-2px;<br />
margin-top:-50px;</p>
<p>}</p>
<p>.custom .menu li.current a, .custom .menu li.current-cat a {<br />
	border-bottom: #5581D9 4px solid;<br />
	}</p>
<p>.custom .menu a {<br />
	border-bottom: #23468E 4px solid;<br />
background:none;<br />
margin-left:2px;<br />
font-weight:bold;<br />
font-size:14px;<br />
	}</p>
<p>.custom .menu a:hover {<br />
	border-bottom: #5581D9 4px solid;<br />
background:none;<br />
	}</p>
<p>/* Category Nav Menu */</p>
<p>ul#cat_tabs { list-style: none; border: 0px; border-width: 0 0 1px 1px; background:#23468E; height: 30px; margin-top: 0px;}<br />
  ul#cat_tabs li { margin-bottom: 10px; background: #23468E; border-left: 0; float: left; }<br />
  ul#cat_tabs li.current_page_item, ul#cat_tabs li.current-cat { padding-bottom: 0.1em; background: #fff; border-bottom: 0; }<br />
	ul#cat_tabs li a { display: block; line-height: 10px; color: #fff; font-size:14px; letter-spacing: 1px; padding-top: 8px; padding-left: 10px;}<br />
	ul#cat_tabs li a:hover { color: #5581D9; font-weight: bold;}</p>
<p>      ul#cat_tabs li ul {position:absolute; display:none; list-style:none;}<br />
	  ul#cat_tabs li:hover ul {display:block;}<br />
	  ul#cat_tabs li ul li {float:none;}</p>
<p>ul#cat_tabs:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }</p>
<p>/* Style the First (or Only) Post */<br />
.custom .post.top {<br />
   background:#FFFFFF none repeat scroll 0 0;<br />
   border-bottom: 1px solid #ddd !important;<br />
    padding-bottom: 10px;<br />
}</p>
<p>/* Style Remaining Posts (in a Multi-Post Listing) */<br />
.custom .post.post_box {<br />
   background:#FFFFFF none repeat scroll 0 0;<br />
   border-bottom:1px solid #ddd;<br />
   padding-bottom: 10px;<br />
}<br />
/* Post Styling */</p>
<p>.custom .calendaricon {float: right;<br />
                       margin-top: -1em;}</p>
<p>.custom .month {text-transform: uppercase;<br />
                           font-family: arial;<br />
                           margin-top: -5.5em;<br />
                           margin-left: 2.2em;}</p>
<p>.custom .day {font-family: arial;<br />
                       margin-left: 2.99em;<br />
                       padding-top: .3em;<br />
                       padding-bottom: 2.2em;}</p>
<p>.custom .year {font-family: arial;<br />
                        margin-left: 2.1999em;<br />
                        margin-top: -2.2em;}</p>
<p>/* Author Profile Box */</p>
<p>.postauthor {background: #ffffff; border:1px solid #e1e1e0; overflow: hidden; padding: 1.5em;margin:8px;}<br />
.postauthor img {border: 0px solid #e2dede; float: left; margin-right: 1.5em;height:40px;width:40px;}<br />
.postauthor h4 {color: #666; font-size: 1.5em; margin-bottom: 5px;}<br />
.postauthor p {color: #515151; font-size: 11px; margin-bottom: 12px;}<br />
.postauthor p.hlight {font-size: 11px; text-transform: uppercase;}<br />
.postauthor p.hlight span {color: #CB3131; font-size: 13px; font-style: italic; font-weight: bold; letter-spacing: 0.8px;}</p>
<p>.clear { clear: both }</p>
<p>.frame {<br />
    background: #EEE;<br />
    border: 1px solid #DDD;<br />
    padding: 0.5em;         /* may need to be adjusted */<br />
}</p>
<p>.custom #customwpnavi {<br />
border-top:1px solid #c0c0c0;<br />
border-bottom:4px solid #23468E;	</p>
<p>}</p>
<p>/* pagenavi */<br />
.wp-pagenavi { margin: 15px 0px 15px 0px; }<br />
.wp-pagenavi a, .wp-pagenavi a:link { font-size:12px; padding: 5px 9px; margin: 2px; text-decoration: none; border:0px; border-bottom: 4px solid #23468E; color: #404040; }<br />
.wp-pagenavi a:visited { font-size:12px; padding: 5px 9px; margin: 2px; text-decoration: none; border:0px; border-bottom: 4px solid #5581D9; color: #413f36; }<br />
.wp-pagenavi a:hover { font-size:12px; border-bottom: 4px solid #5581D9; color: #5581D9; }<br />
.wp-pagenavi a:active { font-size:12px; padding: 5px 9px; margin: 2px; text-decoration: none; border-bottom: 4px solid #5581D9; color: #413f36; }<br />
.wp-pagenavi span.pages { font-size:12px; padding: 5px 9px; margin: 2px 2px 2px 2px; color: #000000; border:0px; color: #5581D9; }<br />
.wp-pagenavi span.current { font-size:12px; padding: 5px 9px; margin: 2px; font-weight: bold; border: 0px; border-bottom: 4px solid #5581D9; color: #23468E; }<br />
.wp-pagenavi span.extend { font-size:12px; padding: 5px 9px; margin: 2px; border-bottom: 4px solid #5581D9; color: #23468E;  }</p>
<p>/* Sidebar */</p>
<p>.custom .sidebar h3  {<br />
	border-top:4px solid #23468E;<br />
font-size: 14px;<br />
font-weight: bold;<br />
text-transform: normal;<br />
line-height: 36px;<br />
}</p>
<p>.custom .textwidget {<br />
	font-size: 12px;<br />
color: #404040;<br />
}</p>
<p>.custom .widget .widget_featured-posts h3{<br />
	background:none;<br />
}</p>
<p>/* Comment Section */</p>
<p>.custom .avatar img {float: left; margin-left: -1em; padding-right:<br />
1em;}</p>
<p>.custom dl#comment_list dt.comment{</p>
<p>background:transparent url(images/commenttop3.gif) no-repeat scroll 50%<br />
100%;</p>
<p>height: 9em;</p>
<p>}</p>
<p>.custom dl#comment_list dd.comment {</p>
<p>background: #5581D9 url(images/commentbottom4.gif) no-repeat scroll 0%<br />
100%;</p>
<p>border-bottom: 0 none;</p>
<p>margin-left: 63px;</p>
<p>margin-top: -1em;</p>
<p>width: 504px;</p>
<p>}</p>
<p>.custom dl#comment_list dd.comment div.format_text {margin-top:-1em ;}</p>
<p>/* Footer */</p>
<p>#footer{<br />
 background: #eeeeee;<br />
}<br />
.custom #footer {<br />
  width: 100%;<br />
 border-top:2em solid #fff;<br />
 background: #eeeeee;<br />
padding:0em;<br />
}<br />
.custom #footer a{<br />
 border-bottom: 1px none #fff;<br />
}<br />
.custom #footer {<br />
 text-align:center;<br />
}<br />
/* footer widget area setup */<br />
#footer_setup {<br />
 /* widgetized footer background (not footer background) */<br />
 background: #444343;<br />
 /* widget padding */<br />
 padding:1.5em;<br />
 /* margin at bottom of widgets */<br />
 margin-bottom: 25px;<br />
 /* do not change this! */<br />
 overflow: hidden;<br />
}</p>
<p>/* widget item setup */<br />
#footer_setup .footer_items {<br />
 /* contents alignment */<br />
 text-align: left;<br />
 /* widget width */<br />
 width: 33.3%;<br />
 /* space between widgets */<br />
 padding-right: 0px;<br />
 /* text color */<br />
 color: #fff;<br />
 /* do not change these! */<br />
 display: inline-block;<br />
 float: left;<br />
 height: 100%;<br />
}</p>
<p>/* widget item headers */<br />
#footer_setup .footer_items h3 {<br />
 /* font size */<br />
 font-size: 1.5em;<br />
 /* bold or not */<br />
 font-weight: bold;<br />
 /* uppercase or not */<br />
 text-transform: uppercase;<br />
 /* space out the letters*/<br />
 letter-spacing: 0px;<br />
 /* font color*/<br />
 color: #ffffff;<br />
 /* padding under header text */<br />
 padding-bottom: 3px;<br />
 /* border under header text */<br />
 border-bottom: 3px none #ffdf00;<br />
 /* distance between border and widget text */<br />
 margin-bottom: 5px;<br />
}</p>
<p>/* do not change these! */<br />
#footer_setup .footer_items ul li { list-style:none;<br />
 font-size:1.4em;<br />
 line-height:1.5em;<br />
}<br />
#footer_setup .footer_items ul { margin: 1em; padding: 0px; }</p>
<p></code></p>


<p>Related posts:<ol><li><a href='http://wpaddict.net/making-a-two-tiered-navigation-in-wordpress/' rel='bookmark' title='Permanent Link: Making A Two-Tiered Navigation in WordPress'>Making A Two-Tiered Navigation in WordPress</a></li>
<li><a href='http://wpaddict.net/brand-your-wordpress-login-without-a-plugin/' rel='bookmark' title='Permanent Link: Brand Your WordPress Login Without A Plugin'>Brand Your WordPress Login Without A Plugin</a></li>
<li><a href='http://wpaddict.net/thesis-theme-review/' rel='bookmark' title='Permanent Link: Thesis Theme Review'>Thesis Theme Review</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpaddict.net/custom-thesis-theme-1-blue-simplicity/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress Earth Wallpaper</title>
		<link>http://wpaddict.net/wordpress-earth-wallpaper/</link>
		<comments>http://wpaddict.net/wordpress-earth-wallpaper/#comments</comments>
		<pubDate>Sat, 26 Dec 2009 19:07:47 +0000</pubDate>
		<dc:creator>Nile</dc:creator>
				<category><![CDATA[Freebies]]></category>

		<guid isPermaLink="false">http://wpaddict.net/?p=151</guid>
		<description><![CDATA[A tiny late for the holidays, but I hope just as well received as the previous wallpapers. This one is called WordPress Earth. Please remember if you do create your own WordPress fan graphics and would like to share them with others, you can use the contact form and submit. You do get credit, so please remember to include a link to your site as well. This wallpaper comes in 3 resolution sizes, 800&#215;600, 1024&#215;768, [...]


Related posts:<ol><li><a href='http://wpaddict.net/wordpress-sunflower-wallpaper/' rel='bookmark' title='Permanent Link: WordPress Sunflower Wallpaper'>WordPress Sunflower Wallpaper</a></li>
<li><a href='http://wpaddict.net/wordpress-moon-wallpaper/' rel='bookmark' title='Permanent Link: WordPress Moon Wallpaper'>WordPress Moon Wallpaper</a></li>
<li><a href='http://wpaddict.net/wordpress-2-9-1-fixes-a-few-issues/' rel='bookmark' title='Permanent Link: WordPress 2.9.1 Fixes A Few Issues'>WordPress 2.9.1 Fixes A Few Issues</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>A tiny late for the holidays, but I hope just as well received as the previous wallpapers. This one is called WordPress Earth. Please remember if you do create your own WordPress fan graphics and would like to share them with others, you can use the contact form and submit. You do get credit, so please remember to include a link to your site as well.</p>
<div id="attachment_150" class="wp-caption alignleft" style="width: 310px"><a href="http://wpaddict.net/wp-content/uploads/2009/12/wordpress-earth-wallpaper-800x600.jpg"><img src="http://wpaddict.net/wp-content/uploads/2009/12/wordpress-earth-wallpaper-800x600-300x225.jpg" alt="" title="wordpress-earth-wallpaper-800x600" width="300" height="225" class="size-medium wp-image-150" /></a><p class="wp-caption-text">WordPress Earth Wallpaper</p></div> This wallpaper comes in 3 resolution sizes, 800&#215;600, 1024&#215;768, and 1280x 1024. If your resolution is larger than the ones offered, please use the contact form and I will create one from the larger raw image I made for these wallpaper. They are free to download and use.</p>
<p><a class="downloadlink" href="http://wpaddict.net/wp-content/plugins/download-monitor/download.php?id=7" title=" downloaded 86 times" >WordPress Earth Wallpaper 800x600 (86)</a><br />
<a class="downloadlink" href="http://wpaddict.net/wp-content/plugins/download-monitor/download.php?id=8" title=" downloaded 91 times" >WordPress Earth Wallpaper 1024x768 (91)</a><br />
<a class="downloadlink" href="http://wpaddict.net/wp-content/plugins/download-monitor/download.php?id=9" title=" downloaded 99 times" >WordPress Earth Wallpaper 1280x1024 (99)</a>
<p>Hope you enjoy the wallpaper. Remember, please do not claim as your own, and please, if you splice it up and put into a layout, please give credit where it is due. </p>


<p>Related posts:<ol><li><a href='http://wpaddict.net/wordpress-sunflower-wallpaper/' rel='bookmark' title='Permanent Link: WordPress Sunflower Wallpaper'>WordPress Sunflower Wallpaper</a></li>
<li><a href='http://wpaddict.net/wordpress-moon-wallpaper/' rel='bookmark' title='Permanent Link: WordPress Moon Wallpaper'>WordPress Moon Wallpaper</a></li>
<li><a href='http://wpaddict.net/wordpress-2-9-1-fixes-a-few-issues/' rel='bookmark' title='Permanent Link: WordPress 2.9.1 Fixes A Few Issues'>WordPress 2.9.1 Fixes A Few Issues</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpaddict.net/wordpress-earth-wallpaper/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>WordPress Sunflower Wallpaper</title>
		<link>http://wpaddict.net/wordpress-sunflower-wallpaper/</link>
		<comments>http://wpaddict.net/wordpress-sunflower-wallpaper/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 06:06:00 +0000</pubDate>
		<dc:creator>Nile</dc:creator>
				<category><![CDATA[Freebies]]></category>

		<guid isPermaLink="false">http://wpaddict.net/?p=76</guid>
		<description><![CDATA[Wow! The first wallpaper was well received. Anyone who has items they made as a fan of WordPress, you are welcome to pitch in to the readers. Just use the contact form to tell me what you have or would like to offer. You definitely get mention and link credit for your work. Here is another Wallpaper: WordPress Sunflower. Once again, it comes in 3 different sizes. If your resolutions is larger, please use the [...]


Related posts:<ol><li><a href='http://wpaddict.net/wordpress-earth-wallpaper/' rel='bookmark' title='Permanent Link: WordPress Earth Wallpaper'>WordPress Earth Wallpaper</a></li>
<li><a href='http://wpaddict.net/wordpress-moon-wallpaper/' rel='bookmark' title='Permanent Link: WordPress Moon Wallpaper'>WordPress Moon Wallpaper</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Wow! The first wallpaper was well received. Anyone who has items they made as a fan of WordPress, you are welcome to pitch in to the readers. Just use the contact form to tell me what you have or would like to offer. You definitely get mention and link credit for your work.</p>
<div id="attachment_75" class="wp-caption alignleft" style="width: 310px"><img src="http://wpaddict.net/wp-content/uploads/2009/11/wordpress-wallpaper-sunflower-800x600-300x225.jpg" alt="WordPress Sunflower Wallpaper" title="wordpress-wallpaper-sunflower-800x600" width="300" height="225" class="size-medium wp-image-75" /><p class="wp-caption-text">WordPress Sunflower Wallpaper</p></div> Here is another Wallpaper: WordPress Sunflower. Once again, it comes in 3 different sizes. If your resolutions is larger, please use the contact form and I will cut a larger from my larger raw image for you and anyone else who might have the same.</p>
<p><a class="downloadlink" href="http://wpaddict.net/wp-content/plugins/download-monitor/download.php?id=4" title=" downloaded 82 times" >WordPress Sunflower Wallpaper 800x600 (82)</a><br />
<a class="downloadlink" href="http://wpaddict.net/wp-content/plugins/download-monitor/download.php?id=5" title=" downloaded 84 times" >WordPress Sunflower Wallpaper - 1024x768 (84)</a><br />
<a class="downloadlink" href="http://wpaddict.net/wp-content/plugins/download-monitor/download.php?id=6" title=" downloaded 92 times" >WordPress Sunflower Wallpaper 1280x1024 (92)</a>
<p>Feel free to download them. Even though I do not put my name or WP Addict on them, please do not claim as your own. Hope you like them.</p>


<p>Related posts:<ol><li><a href='http://wpaddict.net/wordpress-earth-wallpaper/' rel='bookmark' title='Permanent Link: WordPress Earth Wallpaper'>WordPress Earth Wallpaper</a></li>
<li><a href='http://wpaddict.net/wordpress-moon-wallpaper/' rel='bookmark' title='Permanent Link: WordPress Moon Wallpaper'>WordPress Moon Wallpaper</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpaddict.net/wordpress-sunflower-wallpaper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Moon Wallpaper</title>
		<link>http://wpaddict.net/wordpress-moon-wallpaper/</link>
		<comments>http://wpaddict.net/wordpress-moon-wallpaper/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 08:24:05 +0000</pubDate>
		<dc:creator>Nile</dc:creator>
				<category><![CDATA[Freebies]]></category>

		<guid isPermaLink="false">http://wpaddict.net/?p=48</guid>
		<description><![CDATA[I told you there was some fun stuff. Cannot always be serious and this is for those who are fans of WordPress, so why not give away some WordPress freebies. To start off, I made something that matches the site and the WP Addict Twitter handle &#8211; a wallpaper, the first of many difference types of WordPress related freebies. Why? Because I like WordPress enough as a fan and have met many like myself who [...]


Related posts:<ol><li><a href='http://wpaddict.net/wordpress-earth-wallpaper/' rel='bookmark' title='Permanent Link: WordPress Earth Wallpaper'>WordPress Earth Wallpaper</a></li>
<li><a href='http://wpaddict.net/wordpress-sunflower-wallpaper/' rel='bookmark' title='Permanent Link: WordPress Sunflower Wallpaper'>WordPress Sunflower Wallpaper</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I told you there was some fun stuff. Cannot always be serious and this is for those who are fans of WordPress, so why not give away some WordPress freebies. To start off, I made something that matches the site and the <a href="http://twitter.com/wpaddict">WP Addict Twitter handle</a> &#8211; a wallpaper, the first of many difference types of WordPress related freebies.</p>
<p>Why? Because I like WordPress enough as a fan and have met many like myself who share the enthusiasm. </p>
<div id="attachment_49" class="wp-caption alignleft" style="width: 310px"><img src="http://wpaddict.net/wp-content/uploads/2009/11/wordpress-wallpaper-moon-800x600-300x225.jpg" alt="WordPress Moon Wallpaper" title="wordpress-wallpaper-moon-800x600" width="300" height="225" class="size-medium wp-image-49" /><p class="wp-caption-text">WordPress Moon Wallpaper</p></div>The wallpapers are in 3 different sizes. If a bigger size is needed, leave a comment and I will make it so. I am working on putting a navigation by category for WP Addict so it will be easier to find things as the site grows.</p>
<p><a class="downloadlink" href="http://wpaddict.net/wp-content/plugins/download-monitor/download.php?id=1" title=" downloaded 96 times" >WordPress Moon Wallpaper 800x600 (96)</a><br />
<a class="downloadlink" href="http://wpaddict.net/wp-content/plugins/download-monitor/download.php?id=2" title=" downloaded 101 times" >WordPress Moon Wallpaper 1024x768 (101)</a><br />
<a class="downloadlink" href="http://wpaddict.net/wp-content/plugins/download-monitor/download.php?id=3" title=" downloaded 105 times" >WordPress Moon Wallpaper 1280x1024 (105)</a>
<p>And by the way, if you are a fan, and want to give a few WordPress related freebies (like themes, wallpapers, banners, etc&#8230;), you are welcome to contribute. Contributions means that you get a mention on the site, and getting a back link to your site. <img src='http://wpaddict.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  This is also for tutorials or any WordPress related news. Also, if you are a WordPress newbies, feel free to use the contact form for questions you have.</p>


<p>Related posts:<ol><li><a href='http://wpaddict.net/wordpress-earth-wallpaper/' rel='bookmark' title='Permanent Link: WordPress Earth Wallpaper'>WordPress Earth Wallpaper</a></li>
<li><a href='http://wpaddict.net/wordpress-sunflower-wallpaper/' rel='bookmark' title='Permanent Link: WordPress Sunflower Wallpaper'>WordPress Sunflower Wallpaper</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://wpaddict.net/wordpress-moon-wallpaper/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
