<?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>Digital Raindrops &#187; how-to</title>
	<atom:link href="http://digitalraindrops.net/demo/wordpress/cms-lite/tag/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://digitalraindrops.net/demo/wordpress/cms-lite</link>
	<description>quality free wordpress themes and tutorials for your blog, themes download, wordpress templates, download wordpress theme, wordpress template</description>
	<lastBuildDate>Sat, 01 May 2010 20:56:36 +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>Hiding a Single Category</title>
		<link>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/</link>
		<comments>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 11:04:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Artisteer]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[hide category]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[suppress]]></category>

		<guid isPermaLink="false">http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/</guid>
		<description><![CDATA[There are a number of different slideshows out there that require you to post the images into a category that you select, this makes updating the slideshow easy to manage, one problem with this is that you cannot hide the posts, if you make the post private then the gallery stops, lets have a look [...]]]></description>
			<content:encoded><![CDATA[<p>There are a number of different slideshows out there that require you to post the images into a category that you select, this makes updating the slideshow easy to manage, one problem with this is that you cannot hide the posts, if you make the post private then the gallery stops, lets have a look at how we can suppress the slideshow gallery in our Artisteer theme.</p>
<p><span id="more-407"></span></p>
<p>We have used this in the our wedding theme, the cu3er slideshow  <a href="http://wordpress.org/extend/plugins/cu3er-post-elements/">WordPress plugin</a> from <a href="http://18elements.com/tools/cu3er-post-elements">18Elements</a> uses a category to feed the display, when we added the images the slideshow category and the posts appeared, not a problem if the images form a part of a full post, but messy when used as placeholders.</p>
<p>View: <a href="http://digitalraindrops.net/demo/wordpress/wedding-theme/">The Wedding Theme</a>.</p>
<p>We could hardcode the category ID and exclude this, that is fine on a static theme where we already know the Category ID, but what if we wanted to make the theme available to other clients or for free download.</p>
<p>On looking for a solution for our Artisteer theme to return a category ID we could not find a simple WordPress function to use on the lists, we have to create our own function that returns a value from the database, if you have been following our tutorials then you will already have demo-functions.php file, if not you can add them to the Artisteer functions.php file.</p>
<p>Add to either your <strong>demo-functions.php</strong> or the Artisteer theme <strong>functions.php</strong></p>
<pre class="brush: php; title: ;">
function demo_get_categoryID($catName){
 global $wpdb;
 $category_slug = str_replace(&quot; &quot;,&quot;-&quot;,$catName);
 $category_slug = strtolower($category_slug);
 $thevalue = $wpdb-&gt;get_var( &quot;SELECT term_id FROM $wpdb-&gt;terms WHERE slug = '&quot; . $category_slug . &quot;'&quot; );
 if ($thevalue) {
 return $thevalue;
 }else{
 return &quot;&quot;;
 }
}
</pre>
<p>Now we need to filter the categories list to exclude the slideshow category from the menu, you can change the name as required.</p>
<p>In the Artisteer theme <strong>functions.php</strong> we will add this block of code to the code that returns the categories list, look for this line and insert the code below.</p>
<p>Find: wp_list_categories(&#8216;title_li=&#8217;); and replace with the following lines.</p>
<pre class="brush: php; title: ;">
/* Start demo Category add line */
 $exclude = demo_get_categoryID('slideshow');
 if ($exclude){
 wp_list_categories('title_li=&amp;exclude='.$exclude.'');
 }else{
 wp_list_categories('title_li=');
}
/* End demo Category add line */
</pre>
<p>So your code block should look like this:</p>
<pre class="brush: php; title: ;">
add_action('get_terms', 'art_vmenu_get_terms_filter');
 add_action('wp_list_categories', 'art_vmenu_wp_list_categories_filter');

 /* Start demo Category add line */
 $exclude = demo_get_categoryID('slideshow');
 if ($exclude){
 wp_list_categories('title_li=&amp;exclude='.$exclude.'');
 }else{
 wp_list_categories('title_li=');
 }
 /* End demo Category add line */
 remove_action('wp_list_categories', 'art_vmenu_wp_list_categories_filter');
 remove_action('get_terms', 'art_vmenu_get_terms_filter');
</pre>
<p>last step is to add our image into two Artisteer files, <strong>index.php</strong> and <strong>archive.php</strong>, look for this line and insert the code below.</p>
<p>Find: &lt;?php while (have_posts()) : the_post(); ?&gt; and paste in the following lines</p>
<pre class="brush: xml; title: ;">
&lt;!-- Start Check if our post is a slideshow post --&gt;
&lt;?php $slideCat = demo_get_categoryID('slideshow'); ?&gt;
&lt;?php if (in_category($slideCat) ) continue; ?&gt;
&lt;!-- End Check if our post is a slideshow post continue if it is --&gt;
</pre>
<p>So your code block should look like this:</p>
<pre class="brush: xml; title: ;">
&lt;?php while (have_posts()) : the_post(); ?&gt;

&lt;!-- Start Check if our post is a slideshow post --&gt;
&lt;?php $slideCat = demo_get_categoryID('slideshow'); ?&gt;
&lt;?php if (in_category($slideCat) ) continue; ?&gt;
&lt;!-- End Check if our post is a slideshow post continue if it is--&gt;
&lt;div&gt;
</pre>
<p>Now we have hidden our slideshow category from view, remember that this will hide all posts in the specified named category, so only add the category to posts you do not want displayed .</p>
<p><a href="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/Untitled-12.jpg"><img class="alignnone size-full wp-image-435" title="Untitled-1" src="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/Untitled-12.jpg" alt="" width="700" height="286" /></a></p>
<p>Please leave a comment if you have found this post of use to your workflow.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Hiding+a+Single+Category&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/&amp;notes=There%20are%20a%20number%20of%20different%20slideshows%20out%20there%20that%20require%20you%20to%20post%20the%20images%20into%20a%20category%20that%20you%20select%2C%20this%20makes%20updating%20the%20slideshow%20easy%20to%20manage%2C%20one%20problem%20with%20this%20is%20that%20you%20cannot%20hide%20the%20posts%2C%20if%20you%20make%20the%20post%20private%20then%20the%20gallery%20stops%2C%20lets%20have%20a%20look%20a&amp;short_link=http://b2l.me/hjmqk&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Hiding+a+Single+Category&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/&amp;notes=There%20are%20a%20number%20of%20different%20slideshows%20out%20there%20that%20require%20you%20to%20post%20the%20images%20into%20a%20category%20that%20you%20select%2C%20this%20makes%20updating%20the%20slideshow%20easy%20to%20manage%2C%20one%20problem%20with%20this%20is%20that%20you%20cannot%20hide%20the%20posts%2C%20if%20you%20make%20the%20post%20private%20then%20the%20gallery%20stops%2C%20lets%20have%20a%20look%20a&amp;short_link=http://b2l.me/hjmqk&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Hiding+a+Single+Category&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/&amp;notes=There%20are%20a%20number%20of%20different%20slideshows%20out%20there%20that%20require%20you%20to%20post%20the%20images%20into%20a%20category%20that%20you%20select%2C%20this%20makes%20updating%20the%20slideshow%20easy%20to%20manage%2C%20one%20problem%20with%20this%20is%20that%20you%20cannot%20hide%20the%20posts%2C%20if%20you%20make%20the%20post%20private%20then%20the%20gallery%20stops%2C%20lets%20have%20a%20look%20a&amp;short_link=http://b2l.me/hjmqk&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Hiding+a+Single+Category&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/&amp;notes=There%20are%20a%20number%20of%20different%20slideshows%20out%20there%20that%20require%20you%20to%20post%20the%20images%20into%20a%20category%20that%20you%20select%2C%20this%20makes%20updating%20the%20slideshow%20easy%20to%20manage%2C%20one%20problem%20with%20this%20is%20that%20you%20cannot%20hide%20the%20posts%2C%20if%20you%20make%20the%20post%20private%20then%20the%20gallery%20stops%2C%20lets%20have%20a%20look%20a&amp;short_link=http://b2l.me/hjmqk&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Hiding+a+Single+Category&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/&amp;notes=There%20are%20a%20number%20of%20different%20slideshows%20out%20there%20that%20require%20you%20to%20post%20the%20images%20into%20a%20category%20that%20you%20select%2C%20this%20makes%20updating%20the%20slideshow%20easy%20to%20manage%2C%20one%20problem%20with%20this%20is%20that%20you%20cannot%20hide%20the%20posts%2C%20if%20you%20make%20the%20post%20private%20then%20the%20gallery%20stops%2C%20lets%20have%20a%20look%20a&amp;short_link=http://b2l.me/hjmqk&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Hiding+a+Single+Category&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/&amp;notes=There%20are%20a%20number%20of%20different%20slideshows%20out%20there%20that%20require%20you%20to%20post%20the%20images%20into%20a%20category%20that%20you%20select%2C%20this%20makes%20updating%20the%20slideshow%20easy%20to%20manage%2C%20one%20problem%20with%20this%20is%20that%20you%20cannot%20hide%20the%20posts%2C%20if%20you%20make%20the%20post%20private%20then%20the%20gallery%20stops%2C%20lets%20have%20a%20look%20a&amp;short_link=http://b2l.me/hjmqk&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Hiding+a+Single+Category&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/&amp;notes=There%20are%20a%20number%20of%20different%20slideshows%20out%20there%20that%20require%20you%20to%20post%20the%20images%20into%20a%20category%20that%20you%20select%2C%20this%20makes%20updating%20the%20slideshow%20easy%20to%20manage%2C%20one%20problem%20with%20this%20is%20that%20you%20cannot%20hide%20the%20posts%2C%20if%20you%20make%20the%20post%20private%20then%20the%20gallery%20stops%2C%20lets%20have%20a%20look%20a&amp;short_link=http://b2l.me/hjmqk&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-mail">
			<a href="http://www.shareaholic.com/api/share/?title=Hiding+a+Single+Category&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/&amp;notes=There%20are%20a%20number%20of%20different%20slideshows%20out%20there%20that%20require%20you%20to%20post%20the%20images%20into%20a%20category%20that%20you%20select%2C%20this%20makes%20updating%20the%20slideshow%20easy%20to%20manage%2C%20one%20problem%20with%20this%20is%20that%20you%20cannot%20hide%20the%20posts%2C%20if%20you%20make%20the%20post%20private%20then%20the%20gallery%20stops%2C%20lets%20have%20a%20look%20a&amp;short_link=http://b2l.me/hjmqk&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.shareaholic.com/api/share/?title=Hiding+a+Single+Category&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/&amp;notes=There%20are%20a%20number%20of%20different%20slideshows%20out%20there%20that%20require%20you%20to%20post%20the%20images%20into%20a%20category%20that%20you%20select%2C%20this%20makes%20updating%20the%20slideshow%20easy%20to%20manage%2C%20one%20problem%20with%20this%20is%20that%20you%20cannot%20hide%20the%20posts%2C%20if%20you%20make%20the%20post%20private%20then%20the%20gallery%20stops%2C%20lets%20have%20a%20look%20a&amp;short_link=http://b2l.me/hjmqk&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=Hiding+a+Single+Category&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/&amp;notes=There%20are%20a%20number%20of%20different%20slideshows%20out%20there%20that%20require%20you%20to%20post%20the%20images%20into%20a%20category%20that%20you%20select%2C%20this%20makes%20updating%20the%20slideshow%20easy%20to%20manage%2C%20one%20problem%20with%20this%20is%20that%20you%20cannot%20hide%20the%20posts%2C%20if%20you%20make%20the%20post%20private%20then%20the%20gallery%20stops%2C%20lets%20have%20a%20look%20a&amp;short_link=http://b2l.me/hjmqk&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-google">
			<a href="http://www.shareaholic.com/api/share/?title=Hiding+a+Single+Category&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/&amp;notes=There%20are%20a%20number%20of%20different%20slideshows%20out%20there%20that%20require%20you%20to%20post%20the%20images%20into%20a%20category%20that%20you%20select%2C%20this%20makes%20updating%20the%20slideshow%20easy%20to%20manage%2C%20one%20problem%20with%20this%20is%20that%20you%20cannot%20hide%20the%20posts%2C%20if%20you%20make%20the%20post%20private%20then%20the%20gallery%20stops%2C%20lets%20have%20a%20look%20a&amp;short_link=http://b2l.me/hjmqk&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://www.shareaholic.com/api/share/?title=Hiding+a+Single+Category&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/&amp;notes=There%20are%20a%20number%20of%20different%20slideshows%20out%20there%20that%20require%20you%20to%20post%20the%20images%20into%20a%20category%20that%20you%20select%2C%20this%20makes%20updating%20the%20slideshow%20easy%20to%20manage%2C%20one%20problem%20with%20this%20is%20that%20you%20cannot%20hide%20the%20posts%2C%20if%20you%20make%20the%20post%20private%20then%20the%20gallery%20stops%2C%20lets%20have%20a%20look%20a&amp;short_link=http://b2l.me/hjmqk&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-ning">
			<a href="http://www.shareaholic.com/api/share/?title=Hiding+a+Single+Category&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/&amp;notes=There%20are%20a%20number%20of%20different%20slideshows%20out%20there%20that%20require%20you%20to%20post%20the%20images%20into%20a%20category%20that%20you%20select%2C%20this%20makes%20updating%20the%20slideshow%20easy%20to%20manage%2C%20one%20problem%20with%20this%20is%20that%20you%20cannot%20hide%20the%20posts%2C%20if%20you%20make%20the%20post%20private%20then%20the%20gallery%20stops%2C%20lets%20have%20a%20look%20a&amp;short_link=http://b2l.me/hjmqk&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://www.shareaholic.com/api/share/?title=Hiding+a+Single+Category&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/&amp;notes=There%20are%20a%20number%20of%20different%20slideshows%20out%20there%20that%20require%20you%20to%20post%20the%20images%20into%20a%20category%20that%20you%20select%2C%20this%20makes%20updating%20the%20slideshow%20easy%20to%20manage%2C%20one%20problem%20with%20this%20is%20that%20you%20cannot%20hide%20the%20posts%2C%20if%20you%20make%20the%20post%20private%20then%20the%20gallery%20stops%2C%20lets%20have%20a%20look%20a&amp;short_link=http://b2l.me/hjmqk&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-bebo">
			<a href="http://www.shareaholic.com/api/share/?title=Hiding+a+Single+Category&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/&amp;notes=There%20are%20a%20number%20of%20different%20slideshows%20out%20there%20that%20require%20you%20to%20post%20the%20images%20into%20a%20category%20that%20you%20select%2C%20this%20makes%20updating%20the%20slideshow%20easy%20to%20manage%2C%20one%20problem%20with%20this%20is%20that%20you%20cannot%20hide%20the%20posts%2C%20if%20you%20make%20the%20post%20private%20then%20the%20gallery%20stops%2C%20lets%20have%20a%20look%20a&amp;short_link=http://b2l.me/hjmqk&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=Hiding+a+Single+Category&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/&amp;notes=There%20are%20a%20number%20of%20different%20slideshows%20out%20there%20that%20require%20you%20to%20post%20the%20images%20into%20a%20category%20that%20you%20select%2C%20this%20makes%20updating%20the%20slideshow%20easy%20to%20manage%2C%20one%20problem%20with%20this%20is%20that%20you%20cannot%20hide%20the%20posts%2C%20if%20you%20make%20the%20post%20private%20then%20the%20gallery%20stops%2C%20lets%20have%20a%20look%20a&amp;short_link=http://b2l.me/hjmqk&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
</ul><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/14/hiding-a-single-category/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adding Post Images</title>
		<link>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/</link>
		<comments>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 14:17:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Latest]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[2.9]]></category>
		<category><![CDATA[Artisteer]]></category>
		<category><![CDATA[post images]]></category>
		<category><![CDATA[post thumbnails]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[the loop]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/</guid>
		<description><![CDATA[WordPress 2.9+ has support for post and page images, looking at the latest release from Artisteer 2.4 there still is no option to have post images, but it is not such a big problem, let us walk you through it and in less than 30 minutes you will have a post with a nice picture. [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress 2.9+ has support for post and page images, looking at the latest release from Artisteer 2.4 there still is no option to have post images, but it is not such a big problem, let us walk you through it and in less than 30 minutes you will have a post with a nice picture.</p>
<p><span id="more-385"></span></p>
<p>Our latest theme is the <a href="http://www.digitalraindrops.net/demo/wordpress/portfolio/" target="_blank">Portfolio Theme</a>, we have used Artisteer 2.4, cu3er slideshow and have created a function to add a number of categories, posts and tags when the theme is first loaded, check back early February for linking, columns and mouseover fading.</p>
<p>Visit <a href="http://digitalraindrops.net/demo/wordpress/wedding-theme/">The Wedding Theme</a> to see how the post images look, while you are there sign the guestbook, we would say view our photos but if we have not emailed you the password you will not be able to.</p>
<p>This post has been created based on a post by <a href="http://markjaquith.wordpress.com/2009/12/23/new-in-wordpress-2-9-post-thumbnail-images/" target="_blank">Mark Jaquith here</a> and we would like to thank mark for making the code easy to follow.</p>
<p>But in this short tutorial we are only looking at the Post Images, support for post images is now a part of WordPress and is easy to implement so lets get started, if you have been following our tutorials then you will already have these lines in the demo-functions.php file, if not you can add them to the Artisteer functions.php file.</p>
<p>The width (200)  and height (133)  dimensions we used here in line three are for a standard landscape image, you may want to change the dimensions to a square or portrait based on the type of posts you will be making.</p>
<p>Add to either your <strong>demo-functions.php</strong> or the Artisteer theme <strong>functions.php</strong></p>
<pre class="brush: php; title: ;">
/* Start WordPress Thumbnail Support Code */
add_theme_support( 'post-thumbnails');
set_post_thumbnail_size( 200, 133, true); // Normal post thumbnails
add_image_size( 'single-post-thumbnail', 400, 9999 ); // Permalink thumbnail size
/* End WordPress Thumbnail Support Code */
</pre>
<p>Now we need to add a style to the stylesheet for our image, you may want to pad the image or add additional margins to suit your theme, Artisteer adds a margin around the img tag, in our theme it was 7px so we added that to the image width, 200 to 214px, and a right margin just to push the text more to the right.</p>
<p>Add to either your <strong>demo-custom.css</strong> or the Artisteer theme <strong>style.css</strong></p>
<pre class="brush: css; title: ;">
/* Add a div to the post list for our thumbnail images */
#demo-image
{
 margin-right: 7px;
 float: left;
 overflow: hidden;
 width: 214px;
 height: 100%px;
}
</pre>
<p>Last step is to add our image into two Artisteer files, index.php and archive.php, as you scroll down you will see this line.</p>
<p>&lt;?php while (have_posts()) : the_post(); ?&gt;</p>
<p>Below that is another line that look like this, paste the code lines after this lines</p>
<p>&lt;!&#8211; article-content &#8211;&gt;</p>
<p>Add this code to the<strong> index.php</strong> and <strong>archive.php</strong></p>
<pre class="brush: xml; title: ;">
&lt;!-- Start demo code Add our post image to the post list --&gt;
 &lt;div id=&quot;demo-image&quot;&gt;
 &lt;?php the_post_thumbnail(); ?&gt;
 &lt;/div&gt;
 &lt;!-- End demo code Add our post image to the post list --&gt;
</pre>
<p>So your code block <strong>should</strong> look like this:</p>
<pre class="brush: xml; title: ;">
&lt;div class=&quot;art-postcontent&quot;&gt;
 &lt;!-- article-content --&gt;

 &lt;!-- Start demo code Add our post image to the post list --&gt;
 &lt;div id=&quot;demo-image&quot;&gt;
 &lt;?php the_post_thumbnail(); ?&gt;
 &lt;/div&gt;
 &lt;!-- End demo code Add our post image to the post list --&gt;

 &lt;?php if (is_search()) the_excerpt(); else the_content(__('Read the rest of this entry &amp;raquo;', 'kubrick')); ?&gt;
 &lt;?php if (is_page() or is_single()) wp_link_pages(array('before' =&gt; '&lt;p&gt;&lt;strong&gt;Pages:&lt;/strong&gt; ', 'after' =&gt; '&lt;/p&gt;', 'next_or_number' =&gt; 'number')); ?&gt;

 &lt;!-- /article-content --&gt;
&lt;/div&gt;
</pre>
<p>Now that is it with the code how easy was that, just edit a post and in the right column you will see an option for the Post Thumbnail, select an image from the post media and you will see an option to make thumbnail, save the post and view your website.</p>
<p><a href="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/Settings51.jpg"><img style="border: 0px" title="Settings-5" src="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/Settings5_thumb1.jpg" border="0" alt="Settings-5" width="642" height="246" /></a></p>
<p><a href="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/screenshot.jpg"><img style="border: 0px" title="screenshot" src="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/screenshot_thumb.jpg" border="0" alt="screenshot" width="687" height="435" /></a></p>
<p>The last and most important thing is to let others know if this helped you, just add your comment to this post for anyone else reading it.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-mail">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-google">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-ning">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-bebo">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=Adding+Post+Images&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/&amp;notes=WordPress%202.9%2B%20has%20support%20for%20post%20and%20page%20images%2C%20looking%20at%20the%20latest%20release%20from%20Artisteer%202.4%20there%20still%20is%20no%20option%20to%20have%20post%20images%2C%20but%20it%20is%20not%20such%20a%20big%20problem%2C%20let%20us%20walk%20you%20through%20it%20and%20in%20less%20than%2030%20minutes%20you%20will%20have%20a%20post%20with%20a%20nice%20picture.%0D%0A%0D%0A%0D%0A%0D%0AOur%20latest%20the&amp;short_link=http://b2l.me/hjmqm&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
</ul><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/13/adding-post-images/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>CMS-Lite Released</title>
		<link>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/cms-lite-released/</link>
		<comments>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/cms-lite-released/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 18:38:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Latest]]></category>
		<category><![CDATA[Artisteer]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://digitalraindrops.net/demo/wordpress/cms-lite/?p=282</guid>
		<description><![CDATA[We are happy to announce that the initial release of the plugin is now available for download from WordPress Extend. If it is your first visit and you are looking for the walkthrough you will find the pages on the top menu, the CMS-Lite has child menu items. Feedback on the posts is welcomed, support [...]]]></description>
			<content:encoded><![CDATA[<p>We are happy to announce that the initial release of the plugin is now available for download from WordPress Extend.</p>
<p>If it is your first visit and you are looking for the walkthrough you will find the pages on the top menu, the CMS-Lite has child menu items.</p>
<p><span id="more-282"></span></p>
<p>Feedback on the posts is welcomed, support is through the parent website, see the support page for the links.</p>
<p>The plugin has taken quite a while to complete, it is free of any charge to use as you see fit, if you do not understand something you can ask, you can suggest how to improve the plugin, do this through the forum.</p>
<p>If you have themes you would like us to add to the collection email us from the support page, these can be both free and premium, you will get full credit and links back to your website services.</p>
<p>Get the Plugin <a title="CSM-Lite Download Page" href="http://wordpress.org/extend/plugins/digital-raindrops-cms-lite/" target="_blank">HERE:</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=CMS-Lite+Released&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/cms-lite-released/&amp;notes=We%20are%20happy%20to%20announce%20that%20the%20initial%20release%20of%20the%20plugin%20is%20now%20available%20for%20download%20from%20WordPress%20Extend.%0D%0A%0D%0AIf%20it%20is%20your%20first%20visit%20and%20you%20are%20looking%20for%20the%20walkthrough%20you%20will%20find%20the%20pages%20on%20the%20top%20menu%2C%20the%20CMS-Lite%20has%20child%20menu%20items.%0D%0A%0D%0A%0D%0A%0D%0AFeedback%20on%20the%20posts%20is%20welcom&amp;short_link=http://b2l.me/hjmqq&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-digg">
			<a href="http://www.shareaholic.com/api/share/?title=CMS-Lite+Released&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/cms-lite-released/&amp;notes=We%20are%20happy%20to%20announce%20that%20the%20initial%20release%20of%20the%20plugin%20is%20now%20available%20for%20download%20from%20WordPress%20Extend.%0D%0A%0D%0AIf%20it%20is%20your%20first%20visit%20and%20you%20are%20looking%20for%20the%20walkthrough%20you%20will%20find%20the%20pages%20on%20the%20top%20menu%2C%20the%20CMS-Lite%20has%20child%20menu%20items.%0D%0A%0D%0A%0D%0A%0D%0AFeedback%20on%20the%20posts%20is%20welcom&amp;short_link=http://b2l.me/hjmqq&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://www.shareaholic.com/api/share/?title=CMS-Lite+Released&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/cms-lite-released/&amp;notes=We%20are%20happy%20to%20announce%20that%20the%20initial%20release%20of%20the%20plugin%20is%20now%20available%20for%20download%20from%20WordPress%20Extend.%0D%0A%0D%0AIf%20it%20is%20your%20first%20visit%20and%20you%20are%20looking%20for%20the%20walkthrough%20you%20will%20find%20the%20pages%20on%20the%20top%20menu%2C%20the%20CMS-Lite%20has%20child%20menu%20items.%0D%0A%0D%0A%0D%0A%0D%0AFeedback%20on%20the%20posts%20is%20welcom&amp;short_link=http://b2l.me/hjmqq&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=CMS-Lite+Released&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/cms-lite-released/&amp;notes=We%20are%20happy%20to%20announce%20that%20the%20initial%20release%20of%20the%20plugin%20is%20now%20available%20for%20download%20from%20WordPress%20Extend.%0D%0A%0D%0AIf%20it%20is%20your%20first%20visit%20and%20you%20are%20looking%20for%20the%20walkthrough%20you%20will%20find%20the%20pages%20on%20the%20top%20menu%2C%20the%20CMS-Lite%20has%20child%20menu%20items.%0D%0A%0D%0A%0D%0A%0D%0AFeedback%20on%20the%20posts%20is%20welcom&amp;short_link=http://b2l.me/hjmqq&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=CMS-Lite+Released&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/cms-lite-released/&amp;notes=We%20are%20happy%20to%20announce%20that%20the%20initial%20release%20of%20the%20plugin%20is%20now%20available%20for%20download%20from%20WordPress%20Extend.%0D%0A%0D%0AIf%20it%20is%20your%20first%20visit%20and%20you%20are%20looking%20for%20the%20walkthrough%20you%20will%20find%20the%20pages%20on%20the%20top%20menu%2C%20the%20CMS-Lite%20has%20child%20menu%20items.%0D%0A%0D%0A%0D%0A%0D%0AFeedback%20on%20the%20posts%20is%20welcom&amp;short_link=http://b2l.me/hjmqq&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=CMS-Lite+Released&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/cms-lite-released/&amp;notes=We%20are%20happy%20to%20announce%20that%20the%20initial%20release%20of%20the%20plugin%20is%20now%20available%20for%20download%20from%20WordPress%20Extend.%0D%0A%0D%0AIf%20it%20is%20your%20first%20visit%20and%20you%20are%20looking%20for%20the%20walkthrough%20you%20will%20find%20the%20pages%20on%20the%20top%20menu%2C%20the%20CMS-Lite%20has%20child%20menu%20items.%0D%0A%0D%0A%0D%0A%0D%0AFeedback%20on%20the%20posts%20is%20welcom&amp;short_link=http://b2l.me/hjmqq&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=CMS-Lite+Released&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/cms-lite-released/&amp;notes=We%20are%20happy%20to%20announce%20that%20the%20initial%20release%20of%20the%20plugin%20is%20now%20available%20for%20download%20from%20WordPress%20Extend.%0D%0A%0D%0AIf%20it%20is%20your%20first%20visit%20and%20you%20are%20looking%20for%20the%20walkthrough%20you%20will%20find%20the%20pages%20on%20the%20top%20menu%2C%20the%20CMS-Lite%20has%20child%20menu%20items.%0D%0A%0D%0A%0D%0A%0D%0AFeedback%20on%20the%20posts%20is%20welcom&amp;short_link=http://b2l.me/hjmqq&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-mail">
			<a href="http://www.shareaholic.com/api/share/?title=CMS-Lite+Released&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/cms-lite-released/&amp;notes=We%20are%20happy%20to%20announce%20that%20the%20initial%20release%20of%20the%20plugin%20is%20now%20available%20for%20download%20from%20WordPress%20Extend.%0D%0A%0D%0AIf%20it%20is%20your%20first%20visit%20and%20you%20are%20looking%20for%20the%20walkthrough%20you%20will%20find%20the%20pages%20on%20the%20top%20menu%2C%20the%20CMS-Lite%20has%20child%20menu%20items.%0D%0A%0D%0A%0D%0A%0D%0AFeedback%20on%20the%20posts%20is%20welcom&amp;short_link=http://b2l.me/hjmqq&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.shareaholic.com/api/share/?title=CMS-Lite+Released&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/cms-lite-released/&amp;notes=We%20are%20happy%20to%20announce%20that%20the%20initial%20release%20of%20the%20plugin%20is%20now%20available%20for%20download%20from%20WordPress%20Extend.%0D%0A%0D%0AIf%20it%20is%20your%20first%20visit%20and%20you%20are%20looking%20for%20the%20walkthrough%20you%20will%20find%20the%20pages%20on%20the%20top%20menu%2C%20the%20CMS-Lite%20has%20child%20menu%20items.%0D%0A%0D%0A%0D%0A%0D%0AFeedback%20on%20the%20posts%20is%20welcom&amp;short_link=http://b2l.me/hjmqq&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=CMS-Lite+Released&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/cms-lite-released/&amp;notes=We%20are%20happy%20to%20announce%20that%20the%20initial%20release%20of%20the%20plugin%20is%20now%20available%20for%20download%20from%20WordPress%20Extend.%0D%0A%0D%0AIf%20it%20is%20your%20first%20visit%20and%20you%20are%20looking%20for%20the%20walkthrough%20you%20will%20find%20the%20pages%20on%20the%20top%20menu%2C%20the%20CMS-Lite%20has%20child%20menu%20items.%0D%0A%0D%0A%0D%0A%0D%0AFeedback%20on%20the%20posts%20is%20welcom&amp;short_link=http://b2l.me/hjmqq&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-google">
			<a href="http://www.shareaholic.com/api/share/?title=CMS-Lite+Released&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/cms-lite-released/&amp;notes=We%20are%20happy%20to%20announce%20that%20the%20initial%20release%20of%20the%20plugin%20is%20now%20available%20for%20download%20from%20WordPress%20Extend.%0D%0A%0D%0AIf%20it%20is%20your%20first%20visit%20and%20you%20are%20looking%20for%20the%20walkthrough%20you%20will%20find%20the%20pages%20on%20the%20top%20menu%2C%20the%20CMS-Lite%20has%20child%20menu%20items.%0D%0A%0D%0A%0D%0A%0D%0AFeedback%20on%20the%20posts%20is%20welcom&amp;short_link=http://b2l.me/hjmqq&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://www.shareaholic.com/api/share/?title=CMS-Lite+Released&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/cms-lite-released/&amp;notes=We%20are%20happy%20to%20announce%20that%20the%20initial%20release%20of%20the%20plugin%20is%20now%20available%20for%20download%20from%20WordPress%20Extend.%0D%0A%0D%0AIf%20it%20is%20your%20first%20visit%20and%20you%20are%20looking%20for%20the%20walkthrough%20you%20will%20find%20the%20pages%20on%20the%20top%20menu%2C%20the%20CMS-Lite%20has%20child%20menu%20items.%0D%0A%0D%0A%0D%0A%0D%0AFeedback%20on%20the%20posts%20is%20welcom&amp;short_link=http://b2l.me/hjmqq&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-ning">
			<a href="http://www.shareaholic.com/api/share/?title=CMS-Lite+Released&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/cms-lite-released/&amp;notes=We%20are%20happy%20to%20announce%20that%20the%20initial%20release%20of%20the%20plugin%20is%20now%20available%20for%20download%20from%20WordPress%20Extend.%0D%0A%0D%0AIf%20it%20is%20your%20first%20visit%20and%20you%20are%20looking%20for%20the%20walkthrough%20you%20will%20find%20the%20pages%20on%20the%20top%20menu%2C%20the%20CMS-Lite%20has%20child%20menu%20items.%0D%0A%0D%0A%0D%0A%0D%0AFeedback%20on%20the%20posts%20is%20welcom&amp;short_link=http://b2l.me/hjmqq&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://www.shareaholic.com/api/share/?title=CMS-Lite+Released&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/cms-lite-released/&amp;notes=We%20are%20happy%20to%20announce%20that%20the%20initial%20release%20of%20the%20plugin%20is%20now%20available%20for%20download%20from%20WordPress%20Extend.%0D%0A%0D%0AIf%20it%20is%20your%20first%20visit%20and%20you%20are%20looking%20for%20the%20walkthrough%20you%20will%20find%20the%20pages%20on%20the%20top%20menu%2C%20the%20CMS-Lite%20has%20child%20menu%20items.%0D%0A%0D%0A%0D%0A%0D%0AFeedback%20on%20the%20posts%20is%20welcom&amp;short_link=http://b2l.me/hjmqq&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-bebo">
			<a href="http://www.shareaholic.com/api/share/?title=CMS-Lite+Released&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/cms-lite-released/&amp;notes=We%20are%20happy%20to%20announce%20that%20the%20initial%20release%20of%20the%20plugin%20is%20now%20available%20for%20download%20from%20WordPress%20Extend.%0D%0A%0D%0AIf%20it%20is%20your%20first%20visit%20and%20you%20are%20looking%20for%20the%20walkthrough%20you%20will%20find%20the%20pages%20on%20the%20top%20menu%2C%20the%20CMS-Lite%20has%20child%20menu%20items.%0D%0A%0D%0A%0D%0A%0D%0AFeedback%20on%20the%20posts%20is%20welcom&amp;short_link=http://b2l.me/hjmqq&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=CMS-Lite+Released&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/cms-lite-released/&amp;notes=We%20are%20happy%20to%20announce%20that%20the%20initial%20release%20of%20the%20plugin%20is%20now%20available%20for%20download%20from%20WordPress%20Extend.%0D%0A%0D%0AIf%20it%20is%20your%20first%20visit%20and%20you%20are%20looking%20for%20the%20walkthrough%20you%20will%20find%20the%20pages%20on%20the%20top%20menu%2C%20the%20CMS-Lite%20has%20child%20menu%20items.%0D%0A%0D%0A%0D%0A%0D%0AFeedback%20on%20the%20posts%20is%20welcom&amp;short_link=http://b2l.me/hjmqq&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
</ul><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/cms-lite-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Header AdSense</title>
		<link>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/header-adsense/</link>
		<comments>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/header-adsense/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 09:54:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Latest]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[Ad]]></category>
		<category><![CDATA[Ad in Header]]></category>
		<category><![CDATA[adblock]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[Header]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://digitalraindrops.net/demo/wordpress/cms-lite/?p=267</guid>
		<description><![CDATA[If you want to add an adSense block to your header with just a few lines of code then you may find this tutorial is for you, in this tutorial we will insert an adSense block into the header section on all pages except the main page. Layout Stylesheet /* Header Ad set the float [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to add an adSense block to your header with just a few lines of code then you may find this tutorial is for you, in this tutorial we will insert an adSense block into the header section on all pages except the main page.</p>
<p><span id="more-267"></span></p>
<h2>Layout Stylesheet</h2>
<pre class="brush: css; title: ;">
/* Header Ad set the float and margins here */
#cms-header-ad {
display: block;
float:right;
height:60px;
margin-top:30px;
margin-left:0px;
margin-right:20px;
width:468px;
overflow:hidden;
}
</pre>
<p>There are only four settings we need to change here, float will place the adblock left or right, then you need to set the left or right margin and zero the other one, last is the top margin, header height &#8211; 60 and divided by two for ours 125-60 = 65,  65 / 2 =32.50 so we set ours at 30px</p>
<p>The paste this at the end of your style.css file remember to add start and end comments like this /* Start added by cms header  adSense block */</p>
<h2>The Header Ad php code</h2>
<pre class="brush: php; title: ;">
&lt;?php
/* update your ad here between ' ' */
$cmsmyadtext = 'replace with your adSense code here';
$cmsadtext = get_option('cms_banner_ad_text');
if ($cmsadtext != $cmsmyadtext) update_option('cms_banner_ad_text',$cmsmyadtext);
if(get_option('cms_banner_ad_text')){ ?&gt;
&lt;div id=&quot;cms-header-ad&quot;&gt;
&lt;?php echo stripslashes(get_option('cms_banner_ad_text')); ?&gt;
&lt;/div&gt;
&lt;?php } ?&gt;
</pre>
<p>This code will create and store the adsense code you enter between the single quotes on line 3 in a WordPress option, it will then compare this to what it gets back from the database, if it has been altered it will reset it to what you have in this file, to disable it just blank the text between the single quotes.</p>
<h2>The Themes Header File</h2>
<p>We now need to call this new file in the themes header file, you will need to know the structure of the header to place the code inside the correct tag, in our header we have placed the code in the art-header-jpg &lt;div&gt;.</p>
<pre class="brush: php; title: ;">
&lt;!-- Start CMS-Lite header ad  --&gt;
&lt;?php if (file_exists(TEMPLATEPATH . '/cms_inc/addons/cms-header-ad/cms-header-ad.php')){
    include_once(TEMPLATEPATH . '/cms_inc/addons/cms-header-ad/cms-header-ad.php');
} ?&gt;
&lt;!-- End CMS-Lite header ad  --&gt;
</pre>
<p>Lets look at this code, the first line is our comment, the next line checks to see if our new file exists, if it exists the third line includes the code in the header, then we end with another comment.</p>
<p>Here is a screenshot with the Artisteer adSense block, I am sure i have seen that website before somewhere, please leave some feedback!</p>
<p><a href="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/Untitled-11.jpg"><img class="alignnone size-full wp-image-395" title="Untitled-1" src="http://digitalraindrops.net/demo/wordpress/cms-lite/files/2010/02/Untitled-11.jpg" alt="" width="700" height="139" /></a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Header+AdSense&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/header-adsense/&amp;notes=If%20you%20want%20to%20add%20an%20adSense%20block%20to%20your%20header%20with%20just%20a%20few%20lines%20of%20code%20then%20you%20may%20find%20this%20tutorial%20is%20for%20you%2C%20in%20this%20tutorial%20we%20will%20insert%20an%20adSense%20block%20into%20the%20header%20section%20on%20all%20pages%20except%20the%20main%20page.%0D%0A%0D%0A%0D%0ALayout%20Stylesheet%0D%0A%5Bsourcecode%20language%3D%22css%22%5D%0D%0A%2F%2A%20Header%20Ad%20s&amp;short_link=http://b2l.me/hjxxj&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Header+AdSense&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/header-adsense/&amp;notes=If%20you%20want%20to%20add%20an%20adSense%20block%20to%20your%20header%20with%20just%20a%20few%20lines%20of%20code%20then%20you%20may%20find%20this%20tutorial%20is%20for%20you%2C%20in%20this%20tutorial%20we%20will%20insert%20an%20adSense%20block%20into%20the%20header%20section%20on%20all%20pages%20except%20the%20main%20page.%0D%0A%0D%0A%0D%0ALayout%20Stylesheet%0D%0A%5Bsourcecode%20language%3D%22css%22%5D%0D%0A%2F%2A%20Header%20Ad%20s&amp;short_link=http://b2l.me/hjxxj&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Header+AdSense&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/header-adsense/&amp;notes=If%20you%20want%20to%20add%20an%20adSense%20block%20to%20your%20header%20with%20just%20a%20few%20lines%20of%20code%20then%20you%20may%20find%20this%20tutorial%20is%20for%20you%2C%20in%20this%20tutorial%20we%20will%20insert%20an%20adSense%20block%20into%20the%20header%20section%20on%20all%20pages%20except%20the%20main%20page.%0D%0A%0D%0A%0D%0ALayout%20Stylesheet%0D%0A%5Bsourcecode%20language%3D%22css%22%5D%0D%0A%2F%2A%20Header%20Ad%20s&amp;short_link=http://b2l.me/hjxxj&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Header+AdSense&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/header-adsense/&amp;notes=If%20you%20want%20to%20add%20an%20adSense%20block%20to%20your%20header%20with%20just%20a%20few%20lines%20of%20code%20then%20you%20may%20find%20this%20tutorial%20is%20for%20you%2C%20in%20this%20tutorial%20we%20will%20insert%20an%20adSense%20block%20into%20the%20header%20section%20on%20all%20pages%20except%20the%20main%20page.%0D%0A%0D%0A%0D%0ALayout%20Stylesheet%0D%0A%5Bsourcecode%20language%3D%22css%22%5D%0D%0A%2F%2A%20Header%20Ad%20s&amp;short_link=http://b2l.me/hjxxj&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Header+AdSense&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/header-adsense/&amp;notes=If%20you%20want%20to%20add%20an%20adSense%20block%20to%20your%20header%20with%20just%20a%20few%20lines%20of%20code%20then%20you%20may%20find%20this%20tutorial%20is%20for%20you%2C%20in%20this%20tutorial%20we%20will%20insert%20an%20adSense%20block%20into%20the%20header%20section%20on%20all%20pages%20except%20the%20main%20page.%0D%0A%0D%0A%0D%0ALayout%20Stylesheet%0D%0A%5Bsourcecode%20language%3D%22css%22%5D%0D%0A%2F%2A%20Header%20Ad%20s&amp;short_link=http://b2l.me/hjxxj&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Header+AdSense&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/header-adsense/&amp;notes=If%20you%20want%20to%20add%20an%20adSense%20block%20to%20your%20header%20with%20just%20a%20few%20lines%20of%20code%20then%20you%20may%20find%20this%20tutorial%20is%20for%20you%2C%20in%20this%20tutorial%20we%20will%20insert%20an%20adSense%20block%20into%20the%20header%20section%20on%20all%20pages%20except%20the%20main%20page.%0D%0A%0D%0A%0D%0ALayout%20Stylesheet%0D%0A%5Bsourcecode%20language%3D%22css%22%5D%0D%0A%2F%2A%20Header%20Ad%20s&amp;short_link=http://b2l.me/hjxxj&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Header+AdSense&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/header-adsense/&amp;notes=If%20you%20want%20to%20add%20an%20adSense%20block%20to%20your%20header%20with%20just%20a%20few%20lines%20of%20code%20then%20you%20may%20find%20this%20tutorial%20is%20for%20you%2C%20in%20this%20tutorial%20we%20will%20insert%20an%20adSense%20block%20into%20the%20header%20section%20on%20all%20pages%20except%20the%20main%20page.%0D%0A%0D%0A%0D%0ALayout%20Stylesheet%0D%0A%5Bsourcecode%20language%3D%22css%22%5D%0D%0A%2F%2A%20Header%20Ad%20s&amp;short_link=http://b2l.me/hjxxj&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-mail">
			<a href="http://www.shareaholic.com/api/share/?title=Header+AdSense&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/header-adsense/&amp;notes=If%20you%20want%20to%20add%20an%20adSense%20block%20to%20your%20header%20with%20just%20a%20few%20lines%20of%20code%20then%20you%20may%20find%20this%20tutorial%20is%20for%20you%2C%20in%20this%20tutorial%20we%20will%20insert%20an%20adSense%20block%20into%20the%20header%20section%20on%20all%20pages%20except%20the%20main%20page.%0D%0A%0D%0A%0D%0ALayout%20Stylesheet%0D%0A%5Bsourcecode%20language%3D%22css%22%5D%0D%0A%2F%2A%20Header%20Ad%20s&amp;short_link=http://b2l.me/hjxxj&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.shareaholic.com/api/share/?title=Header+AdSense&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/header-adsense/&amp;notes=If%20you%20want%20to%20add%20an%20adSense%20block%20to%20your%20header%20with%20just%20a%20few%20lines%20of%20code%20then%20you%20may%20find%20this%20tutorial%20is%20for%20you%2C%20in%20this%20tutorial%20we%20will%20insert%20an%20adSense%20block%20into%20the%20header%20section%20on%20all%20pages%20except%20the%20main%20page.%0D%0A%0D%0A%0D%0ALayout%20Stylesheet%0D%0A%5Bsourcecode%20language%3D%22css%22%5D%0D%0A%2F%2A%20Header%20Ad%20s&amp;short_link=http://b2l.me/hjxxj&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=Header+AdSense&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/header-adsense/&amp;notes=If%20you%20want%20to%20add%20an%20adSense%20block%20to%20your%20header%20with%20just%20a%20few%20lines%20of%20code%20then%20you%20may%20find%20this%20tutorial%20is%20for%20you%2C%20in%20this%20tutorial%20we%20will%20insert%20an%20adSense%20block%20into%20the%20header%20section%20on%20all%20pages%20except%20the%20main%20page.%0D%0A%0D%0A%0D%0ALayout%20Stylesheet%0D%0A%5Bsourcecode%20language%3D%22css%22%5D%0D%0A%2F%2A%20Header%20Ad%20s&amp;short_link=http://b2l.me/hjxxj&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-google">
			<a href="http://www.shareaholic.com/api/share/?title=Header+AdSense&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/header-adsense/&amp;notes=If%20you%20want%20to%20add%20an%20adSense%20block%20to%20your%20header%20with%20just%20a%20few%20lines%20of%20code%20then%20you%20may%20find%20this%20tutorial%20is%20for%20you%2C%20in%20this%20tutorial%20we%20will%20insert%20an%20adSense%20block%20into%20the%20header%20section%20on%20all%20pages%20except%20the%20main%20page.%0D%0A%0D%0A%0D%0ALayout%20Stylesheet%0D%0A%5Bsourcecode%20language%3D%22css%22%5D%0D%0A%2F%2A%20Header%20Ad%20s&amp;short_link=http://b2l.me/hjxxj&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://www.shareaholic.com/api/share/?title=Header+AdSense&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/header-adsense/&amp;notes=If%20you%20want%20to%20add%20an%20adSense%20block%20to%20your%20header%20with%20just%20a%20few%20lines%20of%20code%20then%20you%20may%20find%20this%20tutorial%20is%20for%20you%2C%20in%20this%20tutorial%20we%20will%20insert%20an%20adSense%20block%20into%20the%20header%20section%20on%20all%20pages%20except%20the%20main%20page.%0D%0A%0D%0A%0D%0ALayout%20Stylesheet%0D%0A%5Bsourcecode%20language%3D%22css%22%5D%0D%0A%2F%2A%20Header%20Ad%20s&amp;short_link=http://b2l.me/hjxxj&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-ning">
			<a href="http://www.shareaholic.com/api/share/?title=Header+AdSense&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/header-adsense/&amp;notes=If%20you%20want%20to%20add%20an%20adSense%20block%20to%20your%20header%20with%20just%20a%20few%20lines%20of%20code%20then%20you%20may%20find%20this%20tutorial%20is%20for%20you%2C%20in%20this%20tutorial%20we%20will%20insert%20an%20adSense%20block%20into%20the%20header%20section%20on%20all%20pages%20except%20the%20main%20page.%0D%0A%0D%0A%0D%0ALayout%20Stylesheet%0D%0A%5Bsourcecode%20language%3D%22css%22%5D%0D%0A%2F%2A%20Header%20Ad%20s&amp;short_link=http://b2l.me/hjxxj&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://www.shareaholic.com/api/share/?title=Header+AdSense&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/header-adsense/&amp;notes=If%20you%20want%20to%20add%20an%20adSense%20block%20to%20your%20header%20with%20just%20a%20few%20lines%20of%20code%20then%20you%20may%20find%20this%20tutorial%20is%20for%20you%2C%20in%20this%20tutorial%20we%20will%20insert%20an%20adSense%20block%20into%20the%20header%20section%20on%20all%20pages%20except%20the%20main%20page.%0D%0A%0D%0A%0D%0ALayout%20Stylesheet%0D%0A%5Bsourcecode%20language%3D%22css%22%5D%0D%0A%2F%2A%20Header%20Ad%20s&amp;short_link=http://b2l.me/hjxxj&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-bebo">
			<a href="http://www.shareaholic.com/api/share/?title=Header+AdSense&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/header-adsense/&amp;notes=If%20you%20want%20to%20add%20an%20adSense%20block%20to%20your%20header%20with%20just%20a%20few%20lines%20of%20code%20then%20you%20may%20find%20this%20tutorial%20is%20for%20you%2C%20in%20this%20tutorial%20we%20will%20insert%20an%20adSense%20block%20into%20the%20header%20section%20on%20all%20pages%20except%20the%20main%20page.%0D%0A%0D%0A%0D%0ALayout%20Stylesheet%0D%0A%5Bsourcecode%20language%3D%22css%22%5D%0D%0A%2F%2A%20Header%20Ad%20s&amp;short_link=http://b2l.me/hjxxj&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=Header+AdSense&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/header-adsense/&amp;notes=If%20you%20want%20to%20add%20an%20adSense%20block%20to%20your%20header%20with%20just%20a%20few%20lines%20of%20code%20then%20you%20may%20find%20this%20tutorial%20is%20for%20you%2C%20in%20this%20tutorial%20we%20will%20insert%20an%20adSense%20block%20into%20the%20header%20section%20on%20all%20pages%20except%20the%20main%20page.%0D%0A%0D%0A%0D%0ALayout%20Stylesheet%0D%0A%5Bsourcecode%20language%3D%22css%22%5D%0D%0A%2F%2A%20Header%20Ad%20s&amp;short_link=http://b2l.me/hjxxj&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
</ul><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/09/header-adsense/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Clickable Logo</title>
		<link>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/08/clickable-logo/</link>
		<comments>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/08/clickable-logo/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 22:35:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Latest]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[add logo]]></category>
		<category><![CDATA[clickable]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[Logo]]></category>
		<category><![CDATA[theme logo]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://digitalraindrops.net/demo/wordpress/cms-lite/?p=212</guid>
		<description><![CDATA[Overview Adding a clickable logo to your theme is quite easy, you may have adsense, flash or another clickable area in your header so making the header clickable is not an real option, to overcome this you can add a clickable logo that has it&#8217;s own URL region, you will find the files in the [...]]]></description>
			<content:encoded><![CDATA[<h2>Overview</h2>
<p>Adding a clickable logo to your theme is quite easy, you may have adsense, flash or another clickable area in your header so making the header clickable is not an real option, to overcome this you can add a clickable logo that has it&#8217;s own URL region, you will find the files in the addon folder which will be available soon, you can drop the folder into your theme or you can create the files from the code here, lets have a look at the css layout stylesheet first:</p>
<p><span id="more-212"></span></p>
<h2>Stylesheet css</h2>
<pre class="brush: css; title: ;">
/* change the height width margin and float here */
/* header is 125px */
#cms-header-logo
{
 position: absolute;
 float:left;
 height:85px;
 margin-top:20px;
 margin-left:10px;
 width:300px;
 overflow:hidden;
 background-image: url('images/logo.png');
 background-repeat: no-repeat;
 background-position: center center;
}
/* change the height width for clickable area here */
#cms-header-logo a {
 position: absolute;
 display: block;
 height:85px;
 width: 300px;
}
</pre>
<p>What values do you need to change for your own theme:</p>
<p>Simple one this value places the logo position on the left or right:</p>
<pre class="brush: css; gutter: false; title: ; toolbar: false;">float:left;</pre>
<p>The height of your logo file:</p>
<pre class="brush: css; gutter: false; title: ; toolbar: false;">height:85px;</pre>
<p>The top margin is where it will fit horizontal to the top of the header section, on this website we have a header section of 125px, with an image height of 85, so to center the logo horizontal we make this value 20px.</p>
<pre class="brush: css; gutter: false; title: ; toolbar: false;">margin-top:20px;</pre>
<p>This is the indentation from the left, if your logo was on the right this would be margin-right, on this site we changed this to 10px to match the content.</p>
<pre class="brush: css; gutter: false; title: ; toolbar: false;">margin-left:10px;</pre>
<p>The width value of your logo here, ours is 300px.</p>
<pre class="brush: css; gutter: false; title: ; toolbar: false;">width:300px;</pre>
<p>The url which is the location and name of the logo image file relative to the themes root folder, notice there is no leading slash.</p>
<pre class="brush: css; gutter: false; title: ; toolbar: false;">background-image: url('images/logo.png');</pre>
<p>The second block of code is the clickable area, when you set an image as a background image it is not clickable, so you are adding a clickable area with the a tag, the size of this is the same as our logo in this example.</p>
<p>So you have the css code finished so you just paste this into the bottom of your css file, take time and enter some comments inside /* your comment */, this will enable you to identify your changes to move to a new theme, we will be publishing another post shortly on a good way to do this without using the themes file.</p>
<h2>The Header logo php file</h2>
<p>Instead of pasting the blocks of code into the header.php we will use another file and call this from the header with a single code line, this means that we can easy use the code on another theme, and we are not messing about with the core theme code and losing track of where we have been playing.</p>
<pre class="brush: php; title: ;">
&lt;?php
$logosrc = TEMPLATEPATH. '/images/logo.png';
if (file_exists($logosrc)){ ?&gt;
 &lt;div id=&quot;cms-header-logo&quot;&gt;
 &lt;a href=&lt;?php echo &quot;'http://www.digitalraindrops.net/'&quot;; ?&gt; &gt;&lt;/a&gt;
 &lt;/div&gt;
&lt;?php } ?&gt;
</pre>
<p>This code will check if the logo exists in the themes folder, if it does it will create a div to hold the logo, the &#8216;a href&#8217; is the url you want to direct the user to.</p>
<p>Save this code with a text editor with a php extention and place this in a folder in the themes root directory, use a good naming convention so you can relate to who created the file, we use csm-filename.php, so you could use your initials.</p>
<h2>The Themes Header File</h2>
<p>We now need to call this new file in the themes header file, you will need to know the structure of the header to place the code inside the correct tag, in our header we have placed the code in the art-header-jpg &lt;div&gt;.</p>
<pre class="brush: php; title: ;">
&lt;!-- Start CMS-Lite header logo  --&gt;
&lt;?php if (file_exists(TEMPLATEPATH . '/cms_inc/addons/cms-header-logo/cms-header-logo.php')){
    include_once(TEMPLATEPATH . '/cms_inc/addons/cms-header-logo/cms-header-logo.php');
} ?&gt;
&lt;!-- End CMS-Lite header logo  --&gt;
</pre>
<p>Lets look at this code, the first line is our comment, the next line checks to see if our new file exists, if it exists the third line includes the code in the header, then we end with another comment.</p>
<p>You may be wondering what the &lt;?php and ?&gt; are for, in this code block they switch between html code and and the php code lines.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Clickable+Logo&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/08/clickable-logo/&amp;notes=Overview%0D%0AAdding%20a%20clickable%20logo%20to%20your%20theme%20is%20quite%20easy%2C%20you%20may%20have%20adsense%2C%20flash%20or%20another%20clickable%20area%20in%20your%20header%20so%20making%20the%20header%20clickable%20is%20not%20an%20real%20option%2C%20to%20overcome%20this%20you%20can%20add%20a%20clickable%20logo%20that%20has%20it%27s%20own%20URL%20region%2C%20you%20will%20find%20the%20files%20in%20the%20addon%20f&amp;short_link=http://b2l.me/hjyf8&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Clickable+Logo&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/08/clickable-logo/&amp;notes=Overview%0D%0AAdding%20a%20clickable%20logo%20to%20your%20theme%20is%20quite%20easy%2C%20you%20may%20have%20adsense%2C%20flash%20or%20another%20clickable%20area%20in%20your%20header%20so%20making%20the%20header%20clickable%20is%20not%20an%20real%20option%2C%20to%20overcome%20this%20you%20can%20add%20a%20clickable%20logo%20that%20has%20it%27s%20own%20URL%20region%2C%20you%20will%20find%20the%20files%20in%20the%20addon%20f&amp;short_link=http://b2l.me/hjyf8&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Clickable+Logo&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/08/clickable-logo/&amp;notes=Overview%0D%0AAdding%20a%20clickable%20logo%20to%20your%20theme%20is%20quite%20easy%2C%20you%20may%20have%20adsense%2C%20flash%20or%20another%20clickable%20area%20in%20your%20header%20so%20making%20the%20header%20clickable%20is%20not%20an%20real%20option%2C%20to%20overcome%20this%20you%20can%20add%20a%20clickable%20logo%20that%20has%20it%27s%20own%20URL%20region%2C%20you%20will%20find%20the%20files%20in%20the%20addon%20f&amp;short_link=http://b2l.me/hjyf8&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.shareaholic.com/api/share/?title=Clickable+Logo&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/08/clickable-logo/&amp;notes=Overview%0D%0AAdding%20a%20clickable%20logo%20to%20your%20theme%20is%20quite%20easy%2C%20you%20may%20have%20adsense%2C%20flash%20or%20another%20clickable%20area%20in%20your%20header%20so%20making%20the%20header%20clickable%20is%20not%20an%20real%20option%2C%20to%20overcome%20this%20you%20can%20add%20a%20clickable%20logo%20that%20has%20it%27s%20own%20URL%20region%2C%20you%20will%20find%20the%20files%20in%20the%20addon%20f&amp;short_link=http://b2l.me/hjyf8&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Clickable+Logo&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/08/clickable-logo/&amp;notes=Overview%0D%0AAdding%20a%20clickable%20logo%20to%20your%20theme%20is%20quite%20easy%2C%20you%20may%20have%20adsense%2C%20flash%20or%20another%20clickable%20area%20in%20your%20header%20so%20making%20the%20header%20clickable%20is%20not%20an%20real%20option%2C%20to%20overcome%20this%20you%20can%20add%20a%20clickable%20logo%20that%20has%20it%27s%20own%20URL%20region%2C%20you%20will%20find%20the%20files%20in%20the%20addon%20f&amp;short_link=http://b2l.me/hjyf8&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Clickable+Logo&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/08/clickable-logo/&amp;notes=Overview%0D%0AAdding%20a%20clickable%20logo%20to%20your%20theme%20is%20quite%20easy%2C%20you%20may%20have%20adsense%2C%20flash%20or%20another%20clickable%20area%20in%20your%20header%20so%20making%20the%20header%20clickable%20is%20not%20an%20real%20option%2C%20to%20overcome%20this%20you%20can%20add%20a%20clickable%20logo%20that%20has%20it%27s%20own%20URL%20region%2C%20you%20will%20find%20the%20files%20in%20the%20addon%20f&amp;short_link=http://b2l.me/hjyf8&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Clickable+Logo&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/08/clickable-logo/&amp;notes=Overview%0D%0AAdding%20a%20clickable%20logo%20to%20your%20theme%20is%20quite%20easy%2C%20you%20may%20have%20adsense%2C%20flash%20or%20another%20clickable%20area%20in%20your%20header%20so%20making%20the%20header%20clickable%20is%20not%20an%20real%20option%2C%20to%20overcome%20this%20you%20can%20add%20a%20clickable%20logo%20that%20has%20it%27s%20own%20URL%20region%2C%20you%20will%20find%20the%20files%20in%20the%20addon%20f&amp;short_link=http://b2l.me/hjyf8&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-mail">
			<a href="http://www.shareaholic.com/api/share/?title=Clickable+Logo&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/08/clickable-logo/&amp;notes=Overview%0D%0AAdding%20a%20clickable%20logo%20to%20your%20theme%20is%20quite%20easy%2C%20you%20may%20have%20adsense%2C%20flash%20or%20another%20clickable%20area%20in%20your%20header%20so%20making%20the%20header%20clickable%20is%20not%20an%20real%20option%2C%20to%20overcome%20this%20you%20can%20add%20a%20clickable%20logo%20that%20has%20it%27s%20own%20URL%20region%2C%20you%20will%20find%20the%20files%20in%20the%20addon%20f&amp;short_link=http://b2l.me/hjyf8&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.shareaholic.com/api/share/?title=Clickable+Logo&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/08/clickable-logo/&amp;notes=Overview%0D%0AAdding%20a%20clickable%20logo%20to%20your%20theme%20is%20quite%20easy%2C%20you%20may%20have%20adsense%2C%20flash%20or%20another%20clickable%20area%20in%20your%20header%20so%20making%20the%20header%20clickable%20is%20not%20an%20real%20option%2C%20to%20overcome%20this%20you%20can%20add%20a%20clickable%20logo%20that%20has%20it%27s%20own%20URL%20region%2C%20you%20will%20find%20the%20files%20in%20the%20addon%20f&amp;short_link=http://b2l.me/hjyf8&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.shareaholic.com/api/share/?title=Clickable+Logo&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/08/clickable-logo/&amp;notes=Overview%0D%0AAdding%20a%20clickable%20logo%20to%20your%20theme%20is%20quite%20easy%2C%20you%20may%20have%20adsense%2C%20flash%20or%20another%20clickable%20area%20in%20your%20header%20so%20making%20the%20header%20clickable%20is%20not%20an%20real%20option%2C%20to%20overcome%20this%20you%20can%20add%20a%20clickable%20logo%20that%20has%20it%27s%20own%20URL%20region%2C%20you%20will%20find%20the%20files%20in%20the%20addon%20f&amp;short_link=http://b2l.me/hjyf8&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-google">
			<a href="http://www.shareaholic.com/api/share/?title=Clickable+Logo&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/08/clickable-logo/&amp;notes=Overview%0D%0AAdding%20a%20clickable%20logo%20to%20your%20theme%20is%20quite%20easy%2C%20you%20may%20have%20adsense%2C%20flash%20or%20another%20clickable%20area%20in%20your%20header%20so%20making%20the%20header%20clickable%20is%20not%20an%20real%20option%2C%20to%20overcome%20this%20you%20can%20add%20a%20clickable%20logo%20that%20has%20it%27s%20own%20URL%20region%2C%20you%20will%20find%20the%20files%20in%20the%20addon%20f&amp;short_link=http://b2l.me/hjyf8&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://www.shareaholic.com/api/share/?title=Clickable+Logo&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/08/clickable-logo/&amp;notes=Overview%0D%0AAdding%20a%20clickable%20logo%20to%20your%20theme%20is%20quite%20easy%2C%20you%20may%20have%20adsense%2C%20flash%20or%20another%20clickable%20area%20in%20your%20header%20so%20making%20the%20header%20clickable%20is%20not%20an%20real%20option%2C%20to%20overcome%20this%20you%20can%20add%20a%20clickable%20logo%20that%20has%20it%27s%20own%20URL%20region%2C%20you%20will%20find%20the%20files%20in%20the%20addon%20f&amp;short_link=http://b2l.me/hjyf8&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-ning">
			<a href="http://www.shareaholic.com/api/share/?title=Clickable+Logo&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/08/clickable-logo/&amp;notes=Overview%0D%0AAdding%20a%20clickable%20logo%20to%20your%20theme%20is%20quite%20easy%2C%20you%20may%20have%20adsense%2C%20flash%20or%20another%20clickable%20area%20in%20your%20header%20so%20making%20the%20header%20clickable%20is%20not%20an%20real%20option%2C%20to%20overcome%20this%20you%20can%20add%20a%20clickable%20logo%20that%20has%20it%27s%20own%20URL%20region%2C%20you%20will%20find%20the%20files%20in%20the%20addon%20f&amp;short_link=http://b2l.me/hjyf8&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://www.shareaholic.com/api/share/?title=Clickable+Logo&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/08/clickable-logo/&amp;notes=Overview%0D%0AAdding%20a%20clickable%20logo%20to%20your%20theme%20is%20quite%20easy%2C%20you%20may%20have%20adsense%2C%20flash%20or%20another%20clickable%20area%20in%20your%20header%20so%20making%20the%20header%20clickable%20is%20not%20an%20real%20option%2C%20to%20overcome%20this%20you%20can%20add%20a%20clickable%20logo%20that%20has%20it%27s%20own%20URL%20region%2C%20you%20will%20find%20the%20files%20in%20the%20addon%20f&amp;short_link=http://b2l.me/hjyf8&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-bebo">
			<a href="http://www.shareaholic.com/api/share/?title=Clickable+Logo&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/08/clickable-logo/&amp;notes=Overview%0D%0AAdding%20a%20clickable%20logo%20to%20your%20theme%20is%20quite%20easy%2C%20you%20may%20have%20adsense%2C%20flash%20or%20another%20clickable%20area%20in%20your%20header%20so%20making%20the%20header%20clickable%20is%20not%20an%20real%20option%2C%20to%20overcome%20this%20you%20can%20add%20a%20clickable%20logo%20that%20has%20it%27s%20own%20URL%20region%2C%20you%20will%20find%20the%20files%20in%20the%20addon%20f&amp;short_link=http://b2l.me/hjyf8&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.shareaholic.com/api/share/?title=Clickable+Logo&amp;link=http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/08/clickable-logo/&amp;notes=Overview%0D%0AAdding%20a%20clickable%20logo%20to%20your%20theme%20is%20quite%20easy%2C%20you%20may%20have%20adsense%2C%20flash%20or%20another%20clickable%20area%20in%20your%20header%20so%20making%20the%20header%20clickable%20is%20not%20an%20real%20option%2C%20to%20overcome%20this%20you%20can%20add%20a%20clickable%20logo%20that%20has%20it%27s%20own%20URL%20region%2C%20you%20will%20find%20the%20files%20in%20the%20addon%20f&amp;short_link=http://b2l.me/hjyf8&amp;v=1&amp;apitype=1&amp;apikey=&amp;source=Shareaholic&amp;template=&amp;service=&amp;tags=&amp;ctype=" rel="nofollow" class="external" title=""></a>
		</li>
</ul><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://digitalraindrops.net/demo/wordpress/cms-lite/2010/02/08/clickable-logo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

