<?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>Blogsessive &#187; Blog Design</title>
	<atom:link href="http://blogsessive.com/archive/blogging-tools/blog-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogsessive.com</link>
	<description>Visit Blogsessive for daily WordPress blogging tips.</description>
	<lastBuildDate>Tue, 24 Aug 2010 19:28:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to add backward compatibility to a WordPress 3.0 ready theme</title>
		<link>http://blogsessive.com/blogging-tools/backward-compatibility-wordpress-30-ready-theme/</link>
		<comments>http://blogsessive.com/blogging-tools/backward-compatibility-wordpress-30-ready-theme/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 20:12:12 +0000</pubDate>
		<dc:creator>Alex, Blogsessive</dc:creator>
				<category><![CDATA[Blog Design]]></category>
		<category><![CDATA[Blogging Tools]]></category>
		<category><![CDATA[Coding Tips]]></category>
		<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[custom menus]]></category>
		<category><![CDATA[post thumbnails]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blogsessive.com/?p=1787</guid>
		<description><![CDATA[TweetWith the StudioPress WordPress themes you can really take your blog to a higher level!The latest major release of our favorite blogging platform &#8211; WordPress 3.0 &#8211; has brought quite a few new features to the table. Among them, the custom navigation menus and the post thumbnails (featured image), the latter being available since version [...]]]></description>
			<content:encoded><![CDATA[<div style="float: left; margin-right: 10px; margin-top: 20px;"><a href="http://twitter.com/share" class="twitter-share-button" data-text="How to add backward compatibility to a WordPress 3.0 ready theme" data-via="Blogsessive" data-url="http://blogsessive.com/blogging-tools/backward-compatibility-wordpress-30-ready-theme/" data-count="vertical" data-via="Blogsessive" data-related="QBKL:Blog and logo design studio of Alex Cristache from Blogsessive.com">Tweet</a></div><p>With the StudioPress WordPress themes you can really <a href="http://blogsessive.com/go-studiopress/" title="Take Your Blog to a Higher Level" target="ejejcsingle"><strong>take your blog to a higher level</strong></a>!<p>The latest major release of our favorite blogging platform &#8211; WordPress 3.0 &#8211; has brought quite a few new features to the table. Among them, the custom navigation menus and the post thumbnails (featured image), the latter being available since version 2.9 came out. This started a whole new trend between theme developers, most of them rushing to announce WordPress 3.0 ready themes.</p>
<p>In all this rush, some of the themes released suffered from one big problem: backward compatibility. Why is that important and how can we give some backward compatibility to our WordPress 3.0 ready themes?<span id="more-1787"></span></p>
<h3>Importance of backward compatibility</h3>
<p>While I feel that generally offering some sort of backward compatibility is just a common sense policy, in this case it&#8217;s more than that. Let me explain why.</p>
<p>Not everyone uses the latest WordPress release, and that is for various reasons:</p>
<ul>
<li>Failed to update, or waiting to make sure it&#8217;s &#8220;stable&#8221;;</li>
<li>Doesn&#8217;t really get the importance of an up to date software;</li>
<li>Certain plugins they use are not yet 3.0/3.0.1 compatible.</li>
</ul>
<p>This doesn&#8217;t mean they don&#8217;t want to try and use your beautiful 3.0 ready WordPress theme, or that they shouldn&#8217;t. But you see, the biggest trick resides right here, in this terminology: &#8220;3.0 ready&#8221;. The actual meaning of this is that the theme is compatible with the 3.0 version, not that it requires 3.0 or higher to function properly, and this leads a lot of people into a trap that will cause their blogs and websites to break.</p>
<p>So, the common sense thing to do would be to take the time and apply certain checks and fallback solutions to our themes. Lets see how we can do that.</p>
<h3>Adding WordPress 3.0 features with fallback support</h3>
<p>Both of the above mentioned features &#8211; custom menus and post thumbnails &#8211; are based on a WordPress function added once 2.9 was released: <strong>add theme support();</strong></p>
<h4>Adding post thumbnails support</h4>
<p>In order to add post thumbnail support to your theme, you&#8217;d write this in your <em>functions.php</em> file:</p>
<pre class="brush: php">
// Adds support for post thumbnails
add_theme_support(&#039;post-thumbnails&#039;);</pre>
<p>Simple adding this will cause any WordPress installation prior to 2.9 to break, as the <em>add_theme_support()</em> function was not part of the WordPress core back then. The fix? As easy as this:</p>
<pre class="brush: php">
/* Checks if the installation has the function defined.
If true, continues to add the support for post thumbnails. */
if(function_exists(add_theme_support)) :
	add_theme_support(&#039;post-thumbnails&#039;);
endif;</pre>
<h4>Adding custom menus support</h4>
<p>In order to also add support for the custom menus feature, you&#8217;d normally write this:</p>
<pre class="brush: php">// Add theme support for custom menus
add_theme_support( &#039;menus&#039; );

// Register a custom menu name/location
register_nav_menus(array(
	&#039;custom-menu&#039; =&gt; __( &#039;My Custom Menu&#039; ),
));
</pre>
<p>In this case, we obviously need to check for core support of both functions: <em>add_theme_support()</em> and <em>register_nav_menus()</em>. Let see how we can do that, also including in this check the post thumbnails:</p>
<pre class="brush: php">
if(function_exists(add_theme_support)) {
	add_theme_support(&#039;post-thumbnails&#039;); // Support for post thumbnails

	if(function_exists(add_theme_support)) {
		add_theme_support( &#039;menus&#039; ); // Support for custom menus
		register_nav_menus(array(
			&#039;custom-menu&#039; =&gt; __( &#039;My Custom Menu&#039; ),
		));
	}
}
</pre>
<p>In case you wonder why I chose to add support for menus only after checking if <em>register_nav_menus()</em> is defined, it&#8217;s simply because there&#8217;s no point in adding support for a feature that you won&#8217;t be able to use. Remember, <em>add_theme_support()</em> was added in 2.9, while <em>register_nav_menus()</em> became available only in 3.0.</p>
<p>But how about adding compatibility in the front-end of your theme?</p>
<p>When using post thumbnails, never call them without checking if the function exists first:</p>
<pre class="brush: php">
// Performs a check to see if the function is available and there&#039;s also a thumbnail attached
if (function_exists(the_post_thumbnail) AND has_post_thumbnail()) {
	the_post_thumbnail();
}
</pre>
<p>For the custom menus, the thing is just a tad trickier, but simple as well. I&#8217;m usually using a function that I wrote to specifically check for custom menus support, and even though the <em>wp_nav_menu()</em> function provides a fallback solution, defaulted to <em>wp_page_menu()</em>, this fallback will only activate for 3.0 installations without any menus created and allocated to the reserved space. The fallback won&#8217;t set off if you&#8217;re using a version prior to 3.0.</p>
<p>Due to my preference of <em>wp_list_pages()</em> over <em>wp_page_menu()</em> &#8211; for more customization options &#8211; the following function will apply a compatibility fallback to wp_list_pages:</p>
<pre class="brush: php">
function my_nav_menu() {
	// Check if installation has wp_nav_menu() defined.
	// If true, generate the menu, but don&#039;t print it yet;
	if(function_exists(wp_nav_menu)) {
		$my_nav_menu = wp_nav_menu(array(&#039;menu&#039; =&gt; &#039;Top Menu&#039;, &#039;container&#039; =&gt; &#039;&#039;, &#039;fallback_cb&#039; =&gt; &#039;wp_list_pages&#039;, &#039;depth&#039; =&gt; 2, &#039;echo&#039; =&gt; false));
	}
	// If false, generate the menu using wp_list_pages, but don&#039;t print it yet;
	else {
		$my_nav_menu = &#039;&lt;ul class=&quot;menu&quot;&gt;&#039;.wp_list_pages(&#039;sort_column=menu_order&amp;title_li=&amp;echo=0&amp;depth=2&#039;).&#039;&lt;/ul&gt;&#039;;
	}
	// Prints out the menu;
	echo $my_nav_menu;
}
</pre>
<p>Now, in the front end. instead of calling your menu with <em>wp_nav_menu()</em> you&#8217;ll now use <em>my_nav_menu()</em> to display a backward compatible version.</p>
<h3>Conclusions</h3>
<p>Caught in the rush of doing something nice and new, like a child discovering a shiny new toy, we can miss out some of the most basic problems. Most of them are really easy to solve, like the above mentioned and it would be common sense to make use of them.</p>
<p>And remember: <strong>if ( function_exists(function_name) )</strong> is your geeky <abbr title="Best Friends Forever"><strong>B.F.F.</strong></abbr></p>
<hr /><h3>Free PDF eBook: Corporate Blogging Guide by Blogsessive</h3>As a subscribe reader of Blogsessive, this is my gift to you: a guide to corporate blogging (but not only) that will help you in your blogging adventures! <a href="http://blogsessive.com/wp-content/plugins/download-monitor/download.php?id=8" target="_blank">Download now, for FREE!</a><br /><br /><hr/><div style="background: #eeeeee;">Advertise on Blogsessive! <a href="http://buysellads.com/buy/detail/310/" title="Advertise on Blogsessive">125x125 banners</a> for <strong>$50 per month</strong>!</div>&copy;2008-2010 Copyright by <a href="http://blogsessive.com" title="Blogging tips">Blogsessive - Blogging Tips</a>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href="http://blogsessive.com/contact" title="Contact Blogsessive">contact us</a>, so that we can take legal action immediately.<img src="http://blogsessive.com/?ak_action=api_record_view&id=1787&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blogsessive.com/blogging-tools/backward-compatibility-wordpress-30-ready-theme/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>10 More beautiful websites using WordPress as CMS</title>
		<link>http://blogsessive.com/blogging-tools/10-more-beautiful-websites-using-wordpress-as-cms/</link>
		<comments>http://blogsessive.com/blogging-tools/10-more-beautiful-websites-using-wordpress-as-cms/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 13:30:26 +0000</pubDate>
		<dc:creator>Alex, Blogsessive</dc:creator>
				<category><![CDATA[Blog Design]]></category>
		<category><![CDATA[Blogging Tools]]></category>
		<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blogsessive.com/?p=1599</guid>
		<description><![CDATA[TweetBlogsessive recommends WP WebHost for quality WordPress blog hosting!Loving WordPress is SO easy! You got thousands of great looking blogs, custom themes, free themes, premium themes and designers go beyond that by using WordPress as CMS for their non-blog projects. A while back I showed you 10 non-blog websites powered by WordPress, and now it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<div style="float: left; margin-right: 10px; margin-top: 20px;"><a href="http://twitter.com/share" class="twitter-share-button" data-text="10 More beautiful websites using WordPress as CMS" data-via="Blogsessive" data-url="http://blogsessive.com/blogging-tools/10-more-beautiful-websites-using-wordpress-as-cms/" data-count="vertical" data-via="Blogsessive" data-related="QBKL:Blog and logo design studio of Alex Cristache from Blogsessive.com">Tweet</a></div><p>Have you read "<a href="http://blogsessive.com/go-wprockstar/" title="How To Be a Rockstar WordPress Designer" target="ejejcsingle"><strong>How To Be a Rockstar WordPress Designer</strong></a>" yet?</p><p>Loving WordPress is SO easy! You got thousands of great looking blogs, custom themes, free themes, premium themes and designers go beyond that by using <strong>WordPress as CMS</strong> for their non-blog projects. A while back I showed you <a href="http://blogsessive.com/blogging-tools/10-beautiful-wordpress-websites/" target="_blank" title="WordPress websites">10 non-blog websites powered by WordPress</a>, and now it&#8217;s time to take a look at 10 more!</p>
<p>If you have any additions to the list and wish to suggest a website for a future post, do so by <a href="#respond">adding a comment</a>.</p>
<h4>1. ProBar</h4>
<p><a href="http://theprobar.com" target="_blank" title="ProBar"><img src="http://blogsessive.com/wp-content/uploads/2009/10/1-ProBar-thebrobar.com.jpg" alt="1-ProBar-theprobar.com" title="1-ProBar-theprobar.com" width="500" height="300" class="aligncenter size-full wp-image-1603" /></a></p>
<p><a href="http://theprobar.com" target="_blank" title="ProBar"><strong>Visit ProBar</strong></a></p>
<h4>2. Krispy Krush</h4>
<p><a href="http://www.krispykrush.com" target="_blank" title="Krispy Krush"><img src="http://blogsessive.com/wp-content/uploads/2009/10/2-Krispy-Krush­www.krispykrush.com.jpg" alt="2-Krispy-Krush­www.krispykrush.com" title="2-Krispy-Krush­www.krispykrush.com" width="500" height="300" class="aligncenter size-full wp-image-1605" /></a></p>
<p><a href="http://www.krispykrush.com" target="_blank" title="Krispy Krush"><strong>Visit Krispy Krush</strong></a></p>
<h4>3. The Salon</h4>
<p><a href="http://www.thesalonhair.com" target="_blank" title="The Salon"><img src="http://blogsessive.com/wp-content/uploads/2009/10/3-The-Salon-www.thesalonhair.com.jpg" alt="3-The-Salon-www.thesalonhair.com" title="3-The-Salon-www.thesalonhair.com" width="500" height="300" class="aligncenter size-full wp-image-1606" /></a></p>
<p><a href="http://www.thesalonhair.com" target="_blank" title="The Salon"><strong>Visit The Salon</strong></a><span id="more-1599"></span></p>
<h4>4. Imaginaria Creative</h4>
<p><a href="http://imaginariacreative.com" target="_blank" title="Imaginaria Creative"><img src="http://blogsessive.com/wp-content/uploads/2009/10/4-Imaginaria-Creative-imaginariacreative.com.jpg" alt="4-Imaginaria-Creative-imaginariacreative.com" title="4-Imaginaria-Creative-imaginariacreative.com" width="500" height="300" class="aligncenter size-full wp-image-1607" /></a></p>
<p><a href="http://imaginariacreative.com" target="_blank" title="Imaginaria Creative"><strong>Visit Imaginaria Creative</strong></a></p>
<h4>5. Lyndsey Hamilton Events</h4>
<p><a href="http://www.lyndseyhamiltonevents.com" target="_blank" title="Lyndsey Hamilton Events"><img src="http://blogsessive.com/wp-content/uploads/2009/10/5-Lyndsey-Hamilton-Events-www.lyndseyhamiltonevents.com.jpg" alt="5-Lyndsey-Hamilton-Events-www.lyndseyhamiltonevents.com" title="5-Lyndsey-Hamilton-Events-www.lyndseyhamiltonevents.com" width="500" height="300" class="aligncenter size-full wp-image-1608" /></a></p>
<p><a href="http://www.lyndseyhamiltonevents.com" target="_blank" title="Lyndsey Hamilton Events"><strong>Visit Lyndsey Hamilton Events</strong></a></p>
<h4>6. IOKON Media</h4>
<p><a href="http://www.iokonmedia.com" target="_blank" title="IOKON Media"><img src="http://blogsessive.com/wp-content/uploads/2009/10/6-IOKON-Media-www.iokonmedia.com.jpg" alt="6-IOKON-Media-www.iokonmedia.com" title="6-IOKON-Media-www.iokonmedia.com" width="500" height="300" class="aligncenter size-full wp-image-1609" /></a></p>
<p><a href="http://www.iokonmedia.com" target="_blank" title="IOKON Media"><strong>Visit IOKON Media</strong></a></p>
<h4>7. Loja Birds</h4>
<p><a href="http://www.lojabirds.com.br" target="_blank" title="Loja Birds"><img src="http://blogsessive.com/wp-content/uploads/2009/10/7-Loja-Birds-www.lojabirds.com.br.jpg" alt="7-Loja-Birds-www.lojabirds.com.br" title="7-Loja-Birds-www.lojabirds.com.br" width="500" height="300" class="aligncenter size-full wp-image-1611" /></a></p>
<p><a href="http://www.lojabirds.com.br" target="_blank" title="Loja Birds"><strong>Visit Loja Birds</strong></a></p>
<h4>8. Bug Interactive</h4>
<p><a href="http://www.buginteractive.com" target="_blank" title="Bug Interactive"><img src="http://blogsessive.com/wp-content/uploads/2009/10/8-Bug-Interactive-www.buginteractive.com.jpg" alt="8-Bug-Interactive-www.buginteractive.com" title="8-Bug-Interactive-www.buginteractive.com" width="500" height="300" class="aligncenter size-full wp-image-1612" /></a></p>
<p><a href="http://www.buginteractive.com" target="_blank" title="Bug Interactive"><strong>Visit Bug Interactive</strong></a></p>
<h4>9. Ville de Falaise</h4>
<p><a href="http://www.falaise.fr" target="_blank" title="Ville de Falaise"><img src="http://blogsessive.com/wp-content/uploads/2009/10/9-Ville-de-Falaise-www.falaise.fr.jpg" alt="9-Ville-de-Falaise-www.falaise.fr" title="9-Ville-de-Falaise-www.falaise.fr" width="500" height="300" class="aligncenter size-full wp-image-1613" /></a></p>
<p><a href="http://www.falaise.fr" target="_blank" title="Ville de Falaise"><strong>Visit Ville de Falaise</strong></a></p>
<h4>10. Cow Says Moo</h4>
<p><a href="http://cowsaysmoomedia.com" target="_blank" title="Cow Says Moo"><img src="http://blogsessive.com/wp-content/uploads/2009/10/10-Cow-Says-Moo-cowsaysmoomedia.com.jpg" alt="10-Cow-Says-Moo-cowsaysmoomedia.com" title="10-Cow-Says-Moo-cowsaysmoomedia.com" width="500" height="300" class="aligncenter size-full wp-image-1614" /></a></p>
<p><a href="http://cowsaysmoomedia.com" target="_blank" title="Cow Says Moo"><strong>Visit Cow Says Moo</strong></a></p>
<p>Yes! WordPress is fun. And easy!</p>
<p class="articlefeat" style="margin-bottom: 20px">If you&#8217;re looking to have a site built on WordPress, I can help you through my <a href="http://qbkl.net" target="_blank" title="WordPress &#038; blog design">WordPress focused design studio</a>.</p>
<hr /><h3>Free PDF eBook: Corporate Blogging Guide by Blogsessive</h3>As a subscribe reader of Blogsessive, this is my gift to you: a guide to corporate blogging (but not only) that will help you in your blogging adventures! <a href="http://blogsessive.com/wp-content/plugins/download-monitor/download.php?id=8" target="_blank">Download now, for FREE!</a><br /><br /><hr/><div style="background: #eeeeee;">Advertise on Blogsessive! <a href="http://buysellads.com/buy/detail/310/" title="Advertise on Blogsessive">125x125 banners</a> for <strong>$50 per month</strong>!</div>&copy;2008-2010 Copyright by <a href="http://blogsessive.com" title="Blogging tips">Blogsessive - Blogging Tips</a>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href="http://blogsessive.com/contact" title="Contact Blogsessive">contact us</a>, so that we can take legal action immediately.<img src="http://blogsessive.com/?ak_action=api_record_view&id=1599&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blogsessive.com/blogging-tools/10-more-beautiful-websites-using-wordpress-as-cms/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>A Look Into the WordPress Themes&#8217; Options Pages</title>
		<link>http://blogsessive.com/blogging-tools/wordpress-themes-options-pages/</link>
		<comments>http://blogsessive.com/blogging-tools/wordpress-themes-options-pages/#comments</comments>
		<pubDate>Thu, 14 May 2009 21:59:45 +0000</pubDate>
		<dc:creator>Alex, Blogsessive</dc:creator>
				<category><![CDATA[Blog Design]]></category>
		<category><![CDATA[Blogging Tools]]></category>
		<category><![CDATA[Coding Tips]]></category>
		<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[options]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blogsessive.com/?p=1368</guid>
		<description><![CDATA[TweetDo you need quality design resources? Graphic River has them. Tons! And cheap...For a long while the option panels where something that people could only find in premium (commercial) themes, and for a good reason. The pricing of their licenses allowed the premium theme developers to invest more time in giving theme users the ways [...]]]></description>
			<content:encoded><![CDATA[<div style="float: left; margin-right: 10px; margin-top: 20px;"><a href="http://twitter.com/share" class="twitter-share-button" data-text="A Look Into the WordPress Themes&#8217; Options Pages" data-via="Blogsessive" data-url="http://blogsessive.com/blogging-tools/wordpress-themes-options-pages/" data-count="vertical" data-via="Blogsessive" data-related="QBKL:Blog and logo design studio of Alex Cristache from Blogsessive.com">Tweet</a></div><p>Have you read "<a href="http://blogsessive.com/go-wprockstar/" title="How To Be a Rockstar WordPress Designer" target="ejejcsingle"><strong>How To Be a Rockstar WordPress Designer</strong></a>" yet?</p><p>For a long while the option panels where something that people could only find in premium (commercial) themes, and for a good reason. The pricing of their licenses allowed the premium theme developers to invest more time in giving theme users the ways to do through these panels what they could not do through coding.</p>
<p>With the buzz created around these themes, regular users became aware of what could really be achieved, and thus, those that could not afford the license of a premium theme, became more selective with the free ones. A good-looking theme was not enough anymore, and WordPress developers realized it.</p>
<p>A good premium theme would bring its developer not only a good amount of money, but also recognition in the community, and this is where the free theme developers scored their biggest points. Now that their &#8220;turf&#8221; was endangered they had to react, and they did. For premium themes like <a href="http://blogsessive.com/go-thesis/">Thesis</a> or <a href="http://www.wpunlimited.com/" target="_blank">WP Unlimited</a>, users have now alternatives like <a href="http://themeshaper.com/thematic/" target="_blank">Thematic</a>, <a href="http://themehybrid.com/" target="_blank">Hybrid</a>, <a href="http://carringtontheme.com/" target="_blank">Carrington</a>, <a href="http://wpframework.com/" target="_blank">WP Framework</a> or my own (even if not a framework) <a href="http://blogsessive.com/blogging-tools/download-simple-balance-22-xmas-edition/" target="_blank">Simple Balance</a>.</p>
<h3>Why should free theme developers consider adding an options page?</h3>
<p>Because being &#8220;cool&#8221; is just not enough anymore. Theme developers need to learn how to be useful. Free stuff can be either useless and ignored or useful and praised. I&#8217;m yet to see the developer offering a free theme without <a title="How to (Really) Benefit from Offering Free Stuff" href="http://blogsessive.com/blogging-tips/free-stuff/" target="_blank">gaining something from it</a>, be it awareness, expertise, backlinks, donation money, you name it! But none of these are achieved through an uncompetitive  &#8211; even if free &#8211; product.<span id="more-1368"></span></p>
<h3>5 Most looked for options in a WordPress theme</h3>
<p>&#8220;Stand out from the crowd!&#8221; If I had a penny for every time I read this I&#8217;d laugh at <a href="http://www.shoemoney.com/gallery/v/misc/adsensecheck.jpg.html" target="_blank">Shoemoney&#8217;s AdSense check image</a> sipping a chilled cocktail somewhere on a tropical island, but you know what? This saying is so true that it cannot be repeated enough, and <strong>users KNOW IT</strong>! Theme users want to be able to have their own identity online. They need to be able to customize their themes and make them express who they are and what they believe in. And this is where options pages come into play. What are the most looked for options? Let&#8217;s see&#8230;</p>
<h4>1. Logo and / or header image update / replacement</h4>
<p>It doesn&#8217;t matter if it&#8217;s a professionally designed logo or a simple Windows Paint play. If it gives the blogger satisfaction and he wants to display it, let him do so. Add either a file upload box or an input box where the user could enter the full URL to the logo image to use. Same goes for the header images.</p>
<h4>2. Layout structure</h4>
<p>If you&#8217;re developing a 2 column theme, give the user the option to choose to display the sidebar either on the left, or on the right. With <a href="http://blogsessive.com/blogging-tools/20-free-3-column-wordpress-themes/" target="_blank">3 column themes</a>, you can give them even more options, like having the content centered, between the sidebars, or having both sidebars on the same side (right or left) of the content. If only takes a couple of PHP conditions and some &#8220;visionary&#8221; CSS coding.</p>
<h4>3. Custom navigation menus</h4>
<p>Don&#8217;t expect users to want every page that they publish to show up in their blog&#8217;s main navigation area. Give them the option to select which pages should show up there, and why not, add their own links, even if external.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1378" title="Navigation options" src="http://blogsessive.com/wp-content/uploads/2009/05/main-navigation.gif" alt="Navigation options" width="500" height="126" /></p>
<h4>4. Custom RSS URLs and email subscription forms</h4>
<p>Implementing a FeedBurner email subscription form is fairly easy for any developer, and I&#8217;m pretty sure that any dveloper knows how to customize such a script. The fact that it functions mostly based on a simple user ID should make the customization even easier through a theme options page.</p>
<h4>5. Advertising management</h4>
<p>Not everyone uses services like <a href="http://buysellads.com" target="_blank">BuySellAds</a>, or is affiliated with an advertising network. Some users actually prefer to take care of the advertising themselves. So, why not give them the possibility to do so by adding a few more field to the options page. Let them select the number of banners they need displayed, do-follow option, position of banners and so on. It takes a bit to develop, but the user response to it is amazing.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1382" title="Advertising options" src="http://blogsessive.com/wp-content/uploads/2009/05/advertising.gif" alt="Advertising options" width="500" height="280" /></p>
<h4>Additional options you could consider implementing</h4>
<p>While the 5 options above are the most looked for, some users might also find the following options useful:</p>
<ul>
<li>Overall switch between <strong>serif and sans-serif typography</strong>;</li>
<li>Theme <strong>color adjustments</strong>. Here are a couple of web-based color picker scripts you could use: <a href="http://acko.net/dev/farbtastic" target="_blank">one</a>, <a href="http://www.eyecon.ro/colorpicker/" target="_blank">two</a>, <a href="http://www.intelliance.fr/jquery/color_picker/" target="_blank">three</a> and <a href="http://vreboton.ibacolod.com/DotNetNuke/ControlsandTips/jQueryColorPicker/tabid/69/Default.aspx" target="_blank">four</a>;</li>
<li>Alternatively, you can offer a built in color schemes system;</li>
<li>Custom <strong>&#8220;featured&#8221; areas</strong>;</li>
<li>Additional, customizable <strong>widget areas</strong>;</li>
<li>Twitter updates area;</li>
<li>And the list could go on and on&#8230;</li>
</ul>
<h3>The limits are set by your knowledge and enthusiasm</h3>
<p>While the enthusiasm is not something you train, but rather have it or not, knowledge can be trained. Remember that the <a href="http://codex.wordpress.org/Main_Page">WordPress Codex</a> is your best friend, and the <a href="http://wordpress.org/support/">support forums</a> can be of tremendous help. Additionally, Stefan Vervoort of <a href="http://divitodesign.com/" target="_blank">DivitoDesign</a> and WPToy has put together a very useful PDF called the &#8220;<a href="http://wptoy.com/resources/wordpress-theme-development-check-list-pdf-version/" target="_blank">WordPress Theme Development Checklist</a>&#8220;. Do take a look (and use it!).</p>
<p>So, the next time you think of releasing a free theme, ask yourself this: <strong>Is you theme competitive enough?</strong> If it&#8217;s not, it will not stand a chance when the alternatives are so smart!</p>
<hr /><h3>Free PDF eBook: Corporate Blogging Guide by Blogsessive</h3>As a subscribe reader of Blogsessive, this is my gift to you: a guide to corporate blogging (but not only) that will help you in your blogging adventures! <a href="http://blogsessive.com/wp-content/plugins/download-monitor/download.php?id=8" target="_blank">Download now, for FREE!</a><br /><br /><hr/><div style="background: #eeeeee;">Advertise on Blogsessive! <a href="http://buysellads.com/buy/detail/310/" title="Advertise on Blogsessive">125x125 banners</a> for <strong>$50 per month</strong>!</div>&copy;2008-2010 Copyright by <a href="http://blogsessive.com" title="Blogging tips">Blogsessive - Blogging Tips</a>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href="http://blogsessive.com/contact" title="Contact Blogsessive">contact us</a>, so that we can take legal action immediately.<img src="http://blogsessive.com/?ak_action=api_record_view&id=1368&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blogsessive.com/blogging-tools/wordpress-themes-options-pages/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>10 Beautiful Non-Blog Websites Powered by WordPress</title>
		<link>http://blogsessive.com/blogging-tools/10-beautiful-wordpress-websites/</link>
		<comments>http://blogsessive.com/blogging-tools/10-beautiful-wordpress-websites/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 07:10:00 +0000</pubDate>
		<dc:creator>Alex, Blogsessive</dc:creator>
				<category><![CDATA[Blog Design]]></category>
		<category><![CDATA[Blogging Tools]]></category>
		<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blogsessive.com/?p=1292</guid>
		<description><![CDATA[TweetWith the StudioPress WordPress themes you can really take your blog to a higher level!The time when WordPress was used strictly as a blog platform is long gone. WordPress has evolved into a mature CMS that gives designers and developers the right tools to create amazing non-blog websites for their clients. As proof for that [...]]]></description>
			<content:encoded><![CDATA[<div style="float: left; margin-right: 10px; margin-top: 20px;"><a href="http://twitter.com/share" class="twitter-share-button" data-text="10 Beautiful Non-Blog Websites Powered by WordPress" data-via="Blogsessive" data-url="http://blogsessive.com/blogging-tools/10-beautiful-wordpress-websites/" data-count="vertical" data-via="Blogsessive" data-related="QBKL:Blog and logo design studio of Alex Cristache from Blogsessive.com">Tweet</a></div><p>Looking for really <a href="http://blogsessive.com/go-themeforest/" title="Affordable Premium WP Themes" target="_blank"><strong>affordable premium WordPress themes</strong></a>?</p><p>The time when WordPress was used strictly as a blog platform is long gone. <a href="http://blogsessive.com/blogging-tools/wordpress-powered-websites-the-real-deal/" target="_blank" title="WordPress Powered Websites - The Real Deal">WordPress has evolved into a mature CMS</a> that gives designers and developers the right tools to create amazing non-blog websites for their clients. As proof for that stand these 10 beautiful websites <strong>powered by WordPress</strong>.</p>
<h3>FernWoodCoffee.com</h3>
<p><a href="http://fernwoodcoffee.com/"><img src="http://blogsessive.com/wp-content/uploads/2009/04/fernwoodcoffeecom.jpg" alt="fernwoodcoffee.com" title="fernwoodcoffee.com" width="500" height="150" class="alignnone size-full wp-image-1293" /></a></p>
<p><a href="http://fernwoodcoffee.com/" target="_blank"><strong>Visit website</strong></a></p>
<h3>Herout-Caves.com</h3>
<p><a href="http://www.herout-caves.com/" target="_blank"><img src="http://blogsessive.com/wp-content/uploads/2009/04/herout-cavescom.jpg" alt="herout-caves.com" title="herout-caves.com" width="500" height="150" class="alignnone size-full wp-image-1296" /></a></p>
<p><a href="http://www.herout-caves.com/" target="_blank"><strong>Visit website</strong></a><span id="more-1292"></span></p>
<h3>SearchInsideVideo.com</h3>
<p><a href="http://SearchInsideVideo.com/" target="_blank"><img src="http://blogsessive.com/wp-content/uploads/2009/04/searchinsidevideocom.jpg" alt="searchinsidevideo.com" title="searchinsidevideo.com" width="500" height="150" class="alignnone size-full wp-image-1297" /></a></p>
<p><a href="http://SearchInsideVideo.com/" target="_blank"><strong>Visit website</strong></a></p>
<h3>Discounted.ro</h3>
<p><a href="http://discounted.ro/" target="_blank"><img src="http://blogsessive.com/wp-content/uploads/2009/04/discountedro.jpg" alt="discounted.ro" title="discounted.ro" width="500" height="150" class="alignnone size-full wp-image-1298" /></a></p>
<p><a href="http://discounted.ro/" target="_blank"><strong>Visit website</strong></a></p>
<h3>Healogix.com</h3>
<p><a href="http://healogix.com/" target="_blank"><img src="http://blogsessive.com/wp-content/uploads/2009/04/healogixcom.jpg" alt="healogix.com" title="healogix.com" width="500" height="150" class="alignnone size-full wp-image-1300" /></a></p>
<p><a href="http://healogix.com/" target="_blank"><strong>Visit website</strong></a></p>
<h3>Emploi-Manche.fr</h3>
<p><a href="http://www.emploi-manche.fr/" target="_blank"><img src="http://blogsessive.com/wp-content/uploads/2009/04/emploi-manchefr.jpg" alt="emploi-manche.fr" title="emploi-manche.fr" width="500" height="150" class="alignnone size-full wp-image-1301" /></a></p>
<p><a href="http://www.emploi-manche.fr/" target="_blank"><strong>Visit website</strong></a></p>
<h3>HotelParadiso.it</h3>
<p><a href="http://www.hotelparadiso.it/" target="_blank"><img src="http://blogsessive.com/wp-content/uploads/2009/04/hotelparadisoit.jpg" alt="hotelparadiso.it" title="hotelparadiso.it" width="500" height="150" class="alignnone size-full wp-image-1302" /></a></p>
<p><a href="http://www.hotelparadiso.it/" target="_blank"><strong>Visit website</strong></a></p>
<h3>Typechart.com</h3>
<p><a href="http://www.typechart.com/" target="_blank"><img src="http://blogsessive.com/wp-content/uploads/2009/04/typechartcom.jpg" alt="typechart.com" title="typechart.com" width="500" height="150" class="alignnone size-full wp-image-1303" /></a></p>
<p><a href="http://www.typechart.com/" target="_blank"><strong>Visit website</strong></a></p>
<h3>P41Studios.com</h3>
<p><a href="http://p41studios.com/" target="_blank"><img src="http://blogsessive.com/wp-content/uploads/2009/04/p41studioscom.jpg" alt="p41studios.com" title="p41studios.com" width="500" height="150" class="alignnone size-full wp-image-1304" /></a></p>
<p><a href="http://p41studios.com/" target="_blank"><strong>Visit website</strong></a></p>
<h3>EnrouteFilm.com</h3>
<p><a href="http://www.enroutefilm.com/" target="_blank"><img src="http://blogsessive.com/wp-content/uploads/2009/04/enroutefilmcom.jpg" alt="enroutefilm.com" title="enroutefilm.com" width="500" height="150" class="alignnone size-full wp-image-1305" /></a></p>
<p><a href="http://www.enroutefilm.com/" target="_blank"><strong>Visit website</strong></a></p>
<h3>Do you know more?</h3>
<p>If you have more samples of beautiful non-blog WordPress websites, feel free to leave a comment linking to them, and I&#8217;ll create a follow-up to this post to include them.</p>
<hr /><h3>Free PDF eBook: Corporate Blogging Guide by Blogsessive</h3>As a subscribe reader of Blogsessive, this is my gift to you: a guide to corporate blogging (but not only) that will help you in your blogging adventures! <a href="http://blogsessive.com/wp-content/plugins/download-monitor/download.php?id=8" target="_blank">Download now, for FREE!</a><br /><br /><hr/><div style="background: #eeeeee;">Advertise on Blogsessive! <a href="http://buysellads.com/buy/detail/310/" title="Advertise on Blogsessive">125x125 banners</a> for <strong>$50 per month</strong>!</div>&copy;2008-2010 Copyright by <a href="http://blogsessive.com" title="Blogging tips">Blogsessive - Blogging Tips</a>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href="http://blogsessive.com/contact" title="Contact Blogsessive">contact us</a>, so that we can take legal action immediately.<img src="http://blogsessive.com/?ak_action=api_record_view&id=1292&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blogsessive.com/blogging-tools/10-beautiful-wordpress-websites/feed/</wfw:commentRss>
		<slash:comments>181</slash:comments>
		</item>
		<item>
		<title>WordPress Powered Websites &#8211; The Real Deal</title>
		<link>http://blogsessive.com/blogging-tools/wordpress-powered-websites-the-real-deal/</link>
		<comments>http://blogsessive.com/blogging-tools/wordpress-powered-websites-the-real-deal/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 09:18:26 +0000</pubDate>
		<dc:creator>Alex, Blogsessive</dc:creator>
				<category><![CDATA[Blog Design]]></category>
		<category><![CDATA[Blogging Tools]]></category>
		<category><![CDATA[News & Reviews]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[QBKL Media]]></category>
		<category><![CDATA[website design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blogsessive.com/?p=1174</guid>
		<description><![CDATA[TweetDo you need quality design resources? Graphic River has them. Tons! And cheap...By now, you should know that I&#8217;m a WordPress fan. While most people regard it as a simple blogging platform, some see beyond that and realize that WordPress is a very capable CMS. While working with it as a website CMS will not [...]]]></description>
			<content:encoded><![CDATA[<div style="float: left; margin-right: 10px; margin-top: 20px;"><a href="http://twitter.com/share" class="twitter-share-button" data-text="WordPress Powered Websites &#8211; The Real Deal" data-via="Blogsessive" data-url="http://blogsessive.com/blogging-tools/wordpress-powered-websites-the-real-deal/" data-count="vertical" data-via="Blogsessive" data-related="QBKL:Blog and logo design studio of Alex Cristache from Blogsessive.com">Tweet</a></div><p>With the StudioPress WordPress themes you can really <a href="http://blogsessive.com/go-studiopress/" title="Take Your Blog to a Higher Level" target="ejejcsingle"><strong>take your blog to a higher level</strong></a>!<p>By now, you should know that I&#8217;m a WordPress fan. While most people regard it as a simple blogging platform, some see beyond that and realize that WordPress is a very capable CMS.</p>
<p>While working with it as a website CMS will not allow too many customizations for entry-level developers or users, in the hands of a <strong>pro</strong> WordPress is ready to perform miracles.</p>
<h3>The advantages of WordPress powered websites</h3>
<p>There are quite a bunch of advantages when developing websites using WordPress as CMS, but the most important are:</p>
<ul>
<li><strong>Productivity</strong> &#8211; A lot less time spent on development, which guarantees a lower cost and still high quality;</li>
<li><strong>Ease of use</strong> &#8211; Both client-side and developer-side. The amount of tutorials, plugins and support groups available out there is a divine gift;</li>
<li><strong>Updates</strong> &#8211; The WordPress community is very involved in keeping the project up to date and bug free and the updates are so easy to apply.</li>
</ul>
<p>It&#8217;s enough to run a search on Google and you&#8217;ll see how many people praise the power of WordPress but instead of using words, this time I&#8217;ll use results.<span id="more-1174"></span></p>
<h3>The real deal</h3>
<p>If in the past weeks you&#8217;ve seen less activity on Blogsessive is mostly because <a href="http://qbkl.net" target="_blank" title="QBKL Media - Website design studio"><strong>my design studio, QBKL Media</strong></a> has been working on delivering top notch quality for one of its clients that chose WordPress as the platform for their website redesign.</p>
<p>The client is one of Romania&#8217;s oldest post-revolutionary hotel &#8211; <a href="http://carohotel.ro" target="_blank" title="Caro Hotel Bucharest"><strong>Caro Hotel</strong></a> &#8211; and today we&#8217;re pleased to announce the official launch of their website.</p>
<p>So, instead of going on and on about the power of WordPress, I invite you to <strong>see for yourself</strong> what can be achieved. And believe me that this is only a small part of the real deal!</p>
<hr /><h3>Free PDF eBook: Corporate Blogging Guide by Blogsessive</h3>As a subscribe reader of Blogsessive, this is my gift to you: a guide to corporate blogging (but not only) that will help you in your blogging adventures! <a href="http://blogsessive.com/wp-content/plugins/download-monitor/download.php?id=8" target="_blank">Download now, for FREE!</a><br /><br /><hr/><div style="background: #eeeeee;">Advertise on Blogsessive! <a href="http://buysellads.com/buy/detail/310/" title="Advertise on Blogsessive">125x125 banners</a> for <strong>$50 per month</strong>!</div>&copy;2008-2010 Copyright by <a href="http://blogsessive.com" title="Blogging tips">Blogsessive - Blogging Tips</a>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href="http://blogsessive.com/contact" title="Contact Blogsessive">contact us</a>, so that we can take legal action immediately.<img src="http://blogsessive.com/?ak_action=api_record_view&id=1174&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blogsessive.com/blogging-tools/wordpress-powered-websites-the-real-deal/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Consider This Before Getting a Custom Blog Design</title>
		<link>http://blogsessive.com/blogging-tips/things-to-consider-before-getting-a-custom-blog-design/</link>
		<comments>http://blogsessive.com/blogging-tips/things-to-consider-before-getting-a-custom-blog-design/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 19:26:58 +0000</pubDate>
		<dc:creator>Alex, Blogsessive</dc:creator>
				<category><![CDATA[Blog Design]]></category>
		<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[General Blogging]]></category>
		<category><![CDATA[advice]]></category>
		<category><![CDATA[budget]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://blogsessive.com/?p=1141</guid>
		<description><![CDATA[TweetWith the StudioPress WordPress themes you can really take your blog to a higher level!Today I&#8217;ve received an email that made me think about this subject. Somebody asked me to confirm that a design agency that I&#8217;ve never heard of before, has done the design you see on Blogsessive. Obviously, I replied and told him [...]]]></description>
			<content:encoded><![CDATA[<div style="float: left; margin-right: 10px; margin-top: 20px;"><a href="http://twitter.com/share" class="twitter-share-button" data-text="Consider This Before Getting a Custom Blog Design" data-via="Blogsessive" data-url="http://blogsessive.com/blogging-tips/things-to-consider-before-getting-a-custom-blog-design/" data-count="vertical" data-via="Blogsessive" data-related="QBKL:Blog and logo design studio of Alex Cristache from Blogsessive.com">Tweet</a></div><p>Blogsessive recommends WP WebHost for <a href="http://blogsessive.com/go-wpwebhost/" title="WordPress Hosting" target="_blank"><strong>quality WordPress blog hosting</strong></a>!</p><p>Today I&#8217;ve received an email that made me think about this subject. Somebody asked me to confirm that a design agency that I&#8217;ve never heard of before, has done the design you see on Blogsessive. Obviously, I replied and told him that Blogsessive is a custom design done by yours truly, and any agency (with one exception) that would proud themselves with Blogsessive&#8217;s theme would be a fraud.</p>
<p>After hearing the price for which that agency was going to create something similar, the following thoughts started taking shape:</p>
<ul>
<li>Why would you proud yourself with the work of someone else?</li>
<li>Why think these things would not surface?</li>
<li>Why roll out a low-ball quote for something that&#8217;s worth much more, or that you cannot deliver, but still state you can.</li>
</ul>
<p>Before getting a custom design for you blog, here are some things you should consider.<span id="more-1141"></span></p>
<h3>Do you really need it?</h3>
<p>You know my view on this one. I personally like having a unique looking blog, but than again, I&#8217;m a happy case. I can do my own designs.</p>
<p>Those who cannot have to relay on the skills of people like me and many others. In this case, there are some things you should base your decision on:</p>
<ol>
<li>Can your budget afford a custom design?</li>
<li>Will this design generate profit? (Profit can be either traffic, awareness, money&#8230;)</li>
</ol>
<p>If your answer is &#8216;yes&#8217; to both questions, than you should go ahead with the design. If you answer with &#8216;yes&#8217; to the first question only, then it&#8217;s only a matter of personal choice and willingness to invest in a hobby. The choice is obviously yours.</p>
<h3>Looking for quotes</h3>
<p>If you&#8217;ve decided to go ahead with the design, make sure you write down all the things you need. Otherwise, the quotes you&#8217;ll receive won&#8217;t reflect the reality.</p>
<p>Ask around for quotes on site like <a href="http://elance.com" target="_blank">Elance</a>, <a href="http://getafreelancer.com" target="_blank">Get a Freelancer</a> or <a href="http://rentacoder.com" target="_blank">Rent a Coder</a> or simply contact the owners of the blog&#8217;s that you like and ask them to recommend you their designer.</p>
<h3>Choosing the designer/agency</h3>
<p>You&#8217;ll probably receive quite a bunch of quotes. Some will be very low, some will be too high. The ones that are too high will be pretty easy to identify, but the lower ones can be pretty attractive, considering the restrictive budgets these days.</p>
<p>The best advice I can give you is: <strong>Don&#8217;t be fooled</strong>!</p>
<p>From my whole experience I can guarantee you that there&#8217;s no such thing as a bargain when it comes to a job well done.</p>
<p>We all know that &#8211; for example &#8211; Darren Rowse&#8217;s blog, <a href="http://problogger.net" target="_blank">Problogger.net</a> is an excellent design incorporating so many custom areas, like the Job Board, custom archives, best of zone and so on.</p>
<p>If Darren&#8217;s blog is such a hit, then you&#8217;d probably want something similar in terms of structure and accessibility (bare in mind the design is not everything and Darren is a great blogger, theme aside). Would you expect to get such a well done job for $300, or $400, or $500? Ask a real pro and the answer will be &#8216;no&#8217;. But then again, there are those people quoting these amounts, claiming they can get the job done.</p>
<p><strong>The good</strong>: It fits your current budget.<br />
<strong>The bad:</strong> Lack of professionalism in communication. Delays in delivery. Lack of attention to details. Bugs, and the list can go on and on.</p>
<p>Some of you would probably say I&#8217;m wrong, but consider this. A really well done premium theme sells for $49 to $99. Multiply this with the total sales and see the real price of that really well done design.</p>
<h3>Fitting the project into your budget</h3>
<p>Forget the bargain, start the negotiation. At this point you probably don&#8217;t even need all the features that Darren (<a href="http://problogger.net" target="_blank">Problogger.net</a>), or Brian (<a href="http://copyblogger.com" target="_blank">Copyblogger.com</a>), or I have on our blogs.</p>
<p>Does your traffic and exposure justify a job board? Do you really need so many custom page templates?</p>
<p>Instead of trying to fit everything into a tight budget and probably getting low-quality works, why not fit the custom concept along with the most important features into it. Negotiate.</p>
<p>Let&#8217;s say your budget is indeed $500, but a good agency will ask you for $800. Instead of picking the lowest quote, rather extend the deadline. Taking pressure off the agency could result in a lower quote.<br />
Cut down on the features. Will also reduce costs.</p>
<p>I assure you that you blog will grow naturally even without that job board, and when the time is right and the blogging income will allow it, add that too. Take it step by step and don&#8217;t cut on the overall quality.</p>
<p>Rather put a smaller budget at work to get real results and build on that, than throwing your money out the window on something that will require constant fixing and attention and in the end, a whole lot of extra money to get done.</p>
<p>This is not the view of a designer. This is what I&#8217;ve concluded based on previous experiences, folks coming to me to fix work they previously had done as bargains. It&#8217;s not worth it.</p>
<hr /><h3>Free PDF eBook: Corporate Blogging Guide by Blogsessive</h3>As a subscribe reader of Blogsessive, this is my gift to you: a guide to corporate blogging (but not only) that will help you in your blogging adventures! <a href="http://blogsessive.com/wp-content/plugins/download-monitor/download.php?id=8" target="_blank">Download now, for FREE!</a><br /><br /><hr/><div style="background: #eeeeee;">Advertise on Blogsessive! <a href="http://buysellads.com/buy/detail/310/" title="Advertise on Blogsessive">125x125 banners</a> for <strong>$50 per month</strong>!</div>&copy;2008-2010 Copyright by <a href="http://blogsessive.com" title="Blogging tips">Blogsessive - Blogging Tips</a>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href="http://blogsessive.com/contact" title="Contact Blogsessive">contact us</a>, so that we can take legal action immediately.<img src="http://blogsessive.com/?ak_action=api_record_view&id=1141&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blogsessive.com/blogging-tips/things-to-consider-before-getting-a-custom-blog-design/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>WordPress How To: Latest Posts by Category Archive</title>
		<link>http://blogsessive.com/blogging-tools/latest-posts-by-category-archive/</link>
		<comments>http://blogsessive.com/blogging-tools/latest-posts-by-category-archive/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 02:47:30 +0000</pubDate>
		<dc:creator>Alex, Blogsessive</dc:creator>
				<category><![CDATA[Blog Design]]></category>
		<category><![CDATA[Blogging Tools]]></category>
		<category><![CDATA[Coding Tips]]></category>
		<category><![CDATA[archive]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blogsessive.com/?p=1047</guid>
		<description><![CDATA[TweetDo you need quality design resources? Graphic River has them. Tons! And cheap...One technique that is most common with WordPress magazine or news style themes is the display of an archive of the latest posts by category, as simple titles or with post excerpts. This is useful for the previously mentioned theme styles, but not [...]]]></description>
			<content:encoded><![CDATA[<div style="float: left; margin-right: 10px; margin-top: 20px;"><a href="http://twitter.com/share" class="twitter-share-button" data-text="WordPress How To: Latest Posts by Category Archive" data-via="Blogsessive" data-url="http://blogsessive.com/blogging-tools/latest-posts-by-category-archive/" data-count="vertical" data-via="Blogsessive" data-related="QBKL:Blog and logo design studio of Alex Cristache from Blogsessive.com">Tweet</a></div><p>Looking for really <a href="http://blogsessive.com/go-themeforest/" title="Affordable Premium WP Themes" target="_blank"><strong>affordable premium WordPress themes</strong></a>?</p><p><a title="WordPress - Latest posts by category" href="http://blogsessive.com/wp-content/uploads/2009/02/latest-posts-by-category-archive.gif" target="_blank"><img style="float: right; margin-left: 20px; border: 1px solid #ebe6dc; padding: 5px;" title="Latest posts by category archive" src="http://blogsessive.com/wp-content/uploads/2009/02/latest-posts-by-category-archive-150x150.gif" alt="WordPress - Latest posts by category" width="150" height="150" /></a>One technique that is most common with WordPress magazine or news style themes is the display of an archive of the latest posts by category, as simple titles or with post excerpts. This is useful for the previously mentioned theme styles, but not only. It can be used to set up custom blog homepages, 404 pages, landing pages or even a special archive page.</p>
<p>This tutorial will help you build a &#8216;<strong>Latest Posts by Category Archive</strong>&#8216; in a very easy way. The widths in the CSS styling presented below have been calculated based on the default WordPress theme, assuming that is the most common theme available to anyone.</p>
<p>If you are looking for a plugin to generate such an archive, please check out: <a href="http://blogsessive.com/blogging-tools/wp-plugin-latest-posts-by-category-archive/" target="_blank" title="WordPress Plugin: Latest Posts by Category Archive"><strong>WP Plugin: Latest Posts by Category Archive</strong></a>.</p>
<h3>Setting up the page template</h3>
<p>Open up you favorite code editor and create a blank document. Save the document as &#8216;category-archive.php&#8217; (or any other name you&#8217;d prefer) in the default WordPress theme directory (wp-content/themes/default).</p>
<p>The first step is to asign our new template a name and a page-like structure, so based on the default theme&#8217;s page template, the code you should paste in your new document is:</p>
<pre class="brush: php">
&lt;?php
/*
Template Name: Category Archive
*/
?&gt;

&lt;?php get_header(); ?&gt;

&lt;div id=&quot;content&quot; class=&quot;narrowcolumn&quot;&gt;

	&lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;
	&lt;div class=&quot;post&quot; id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;
	&lt;h2&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;
		&lt;div class=&quot;entry&quot;&gt;
			&lt;?php the_content(&#039;&lt;p class=&quot;serif&quot;&gt;Read the rest of this page &amp;raquo;&lt;/p&gt;&#039;); ?&gt;

			&lt;?php wp_link_pages(array(&#039;before&#039; =&gt; &#039;&lt;p&gt;&lt;strong&gt;Pages:&lt;/strong&gt; &#039;, &#039;after&#039; =&gt; &#039;&lt;/p&gt;&#039;, &#039;next_or_number&#039; =&gt; &#039;number&#039;)); ?&gt;

		&lt;/div&gt;
	&lt;/div&gt;
	&lt;?php endwhile; endif; ?&gt;

	&lt;!-- Category Archive Start --&gt;
	&lt;!-- Category Archive End --&gt;

&lt;/div&gt;

&lt;?php get_sidebar(); ?&gt;

&lt;?php get_footer(); ?&gt;
</pre>
<p>The template above will make sure to display the page name you set up, and also, any additional content you might want to add <em>before the archive</em>, from you WordPress page editor. We will be adding our &#8216;latest posts by category&#8217; code between the &#8216;Category Archive Start&#8217; and &#8216;Category Archive End&#8217; comments.<span id="more-1047"></span></p>
<h3>Adding the archive&#8217;s PHP code</h3>
<p>Simply put, the code below will cycle through the first-level categories of your blog (parent categories), check for the ones that are not empty and if this condition is met, return an unordered list of the latest 5 post from each category. Empty categories will not be displayed.</p>
<pre class="brush: php">
&lt;?php
/*
Template Name: Category Archive
*/
?&gt;

&lt;?php get_header(); ?&gt;

&lt;div id=&quot;content&quot; class=&quot;narrowcolumn&quot;&gt;

	&lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;
	&lt;div class=&quot;post&quot; id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;
	&lt;h2&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;
		&lt;div class=&quot;entry&quot;&gt;
			&lt;?php the_content(&#039;&lt;p class=&quot;serif&quot;&gt;Read the rest of this page &amp;raquo;&lt;/p&gt;&#039;); ?&gt;

			&lt;?php wp_link_pages(array(&#039;before&#039; =&gt; &#039;&lt;p&gt;&lt;strong&gt;Pages:&lt;/strong&gt; &#039;, &#039;after&#039; =&gt; &#039;&lt;/p&gt;&#039;, &#039;next_or_number&#039; =&gt; &#039;number&#039;)); ?&gt;

		&lt;/div&gt;
	&lt;/div&gt;
	&lt;?php endwhile; endif; ?&gt;

	&lt;!-- Category Archive Start --&gt;
	&lt;ul class=&quot;catArchive&quot;&gt;
	&lt;?php
	$catQuery = $wpdb-&gt;get_results(&quot;SELECT * FROM $wpdb-&gt;terms AS wterms INNER JOIN $wpdb-&gt;term_taxonomy AS wtaxonomy ON ( wterms.term_id = wtaxonomy.term_id ) WHERE wtaxonomy.taxonomy = &#039;category&#039; AND wtaxonomy.parent = 0 AND wtaxonomy.count &gt; 0&quot;);

	$catCounter = 0;

	foreach ($catQuery as $category) {

		$catCounter++;

		$catStyle = &#039;&#039;;
		if (is_int($catCounter / 2)) $catStyle = &#039; class=&quot;catAlt&quot;&#039;;

		$catLink = get_category_link($category-&gt;term_id);

		echo &#039;&lt;li&#039;.$catStyle.&#039;&gt;&lt;h3&gt;&lt;a href=&quot;&#039;.$catLink.&#039;&quot; title=&quot;&#039;.$category-&gt;name.&#039;&quot;&gt;&#039;.$category-&gt;name.&#039;&lt;/a&gt;&lt;/h3&gt;&#039;;
			echo &#039;&lt;ul&gt;&#039;;

			query_posts(&#039;cat=&#039;.$category-&gt;term_id.&#039;&amp;showposts=5&#039;);?&gt;

			&lt;?php while (have_posts()) : the_post(); ?&gt;
				&lt;li&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;&lt;?php the_title(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;
			&lt;?php endwhile; ?&gt;

				&lt;li&gt;&lt;a href=&quot;&lt;?php echo $catLink; ?&gt;&quot; title=&quot;&lt;?php echo $category-&gt;name; ?&gt;&quot;&gt;More &lt;strong&gt;&lt;?php echo $category-&gt;name; ?&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
			&lt;/ul&gt;
		&lt;/li&gt;
		&lt;?php }	?&gt;
	&lt;/ul&gt;
	&lt;!-- Category Archive End --&gt;

&lt;/div&gt;

&lt;?php get_sidebar(); ?&gt;

&lt;?php get_footer(); ?&gt;
</pre>
<p>You should now save your file, because <strong>we&#8217;re done editing it</strong>. As you can see, the archive code has been added between the &#8216;Start&#8217; and &#8216;End&#8217; comments. Now let&#8217;s go through the code and dissect it.</p>
<h3>The PHP code explained</h3>
<p>The first thing we do is to set up a database query to cycle through the non-empty parent categories:</p>
<pre class="brush: php">
$catQuery = $wpdb-&gt;get_results(&quot;SELECT * FROM $wpdb-&gt;terms AS wterms INNER JOIN $wpdb-&gt;term_taxonomy AS wtaxonomy ON ( wterms.term_id = wtaxonomy.term_id ) WHERE wtaxonomy.taxonomy = &#039;category&#039; AND wtaxonomy.parent = 0 AND wtaxonomy.count &gt; 0&quot;);
</pre>
<p>You can further tweak this query to exclude categories or specify categories to be listed based on their ID, with the use of the MySQL comparison functions NOT IN or IN.</p>
<p>Let&#8217;s say that you&#8217;d like the archive to exclude the categories with IDs 2, 5 and 6. Your query would become:</p>
<pre class="brush: php">
$catQuery = $wpdb-&gt;get_results(&quot;SELECT * FROM $wpdb-&gt;terms AS wterms INNER JOIN $wpdb-&gt;term_taxonomy AS wtaxonomy ON ( wterms.term_id = wtaxonomy.term_id ) WHERE wtaxonomy.taxonomy = &#039;category&#039; AND wtaxonomy.parent = 0 AND wtaxonomy.count &gt; 0 AND wterms.term_id NOT IN (2,5,6)&quot;);
</pre>
<p>Similarly, if you want to display only the categories with IDs 2,5 and 6, you&#8217;d have:</p>
<pre class="brush: php">
$catQuery = $wpdb-&gt;get_results(&quot;SELECT * FROM $wpdb-&gt;terms AS wterms INNER JOIN $wpdb-&gt;term_taxonomy AS wtaxonomy ON ( wterms.term_id = wtaxonomy.term_id ) WHERE wtaxonomy.taxonomy = &#039;category&#039; AND wtaxonomy.parent = 0 AND wtaxonomy.count &gt; 0 AND wterms.term_id IN (2,5,6)&quot;);
</pre>
<p>For further help with comparison operators and functions, you can check out the <a href="http://dev.mysql.com/doc/refman/5.1/en/comparison-operators.html" target="_blank" title="MySQL Comparison Operators and Functions">MySQL manual</a>.</p>
<p>Next, we set up a category counter which will be incremented each time a category will be displayed. Based on this counter, the code adds a &#8216;<strong>catAlt</strong>&#8216; class that you can use to style differently consecutive categories. In our case, we&#8217;ll use it to shift the categories into two columns. This is were the alternate classes are assigned:</p>
<pre class="brush: php">
$catCounter++;

$catStyle = &#039;&#039;;
if (is_int($catCounter / 2)) $catStyle = &#039; class=&quot;catAlt&quot;&#039;;
</pre>
<p>The category list is built by the use of <strong>foreach</strong> and it helps retrieve vital information about the categories, such as name and permalink:</p>
<pre class="brush: php">
foreach ($catQuery as $category) {
	/* Code used to retrieve and display the latest posts */
}
</pre>
<p>After we display the category title and link through this line of code</p>
<pre class="brush: php">
echo &#039;&lt;li&#039;.$catStyle.&#039;&gt;&lt;h3&gt;&lt;a href=&quot;&#039;.get_category_link($category-&gt;term_id).&#039;&quot; title=&quot;&#039;.$category-&gt;name.&#039;&quot;&gt;&#039;.$category-&gt;name.&#039;&lt;/a&gt;&lt;/h3&gt;&#039;;
</pre>
<p>we continue by using a custom query to retrieve the latest 5 posts from the current category in the cycle, followed by a link to the complete category archive:</p>
<pre class="brush: php">
query_posts(&#039;cat=&#039;.$category-&gt;term_id.&#039;&amp;showposts=5&#039;);?&gt;

&lt;?php while (have_posts()) : the_post(); ?&gt;
	&lt;li&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;&lt;?php the_title(); ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;
&lt;?php endwhile; ?&gt;
	&lt;li&gt;&lt;a href=&quot;&lt;?php echo $catLink; ?&gt;&quot; title=&quot;&lt;?php echo $category-&gt;name; ?&gt;&quot;&gt;More &lt;strong&gt;&lt;?php echo $category-&gt;name; ?&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/li&gt;
</pre>
<p>And that&#8217;s about everything in terms of coding! Now, onto the CSS styling.</p>
<h3>Styling the archive</h3>
<p>Find the <strong>style.css</strong> file in your default theme&#8217;s directory, open it and scroll down to the end of the file. Now copy the code below and paste it in your file.</p>
<pre class="brush: css">
/* Latest posts by category styles */

.catArchive {
	width: 450px;
	overflow: hidden;
	margin: 20px 0 0 0;
	padding: 0;
	list-style-type: none;
}

.catArchive h3 {
	font: normal bold 18px sans-serif;
	border-bottom: 1px solid #666;
	margin: 0;
	padding: 0 0 3px 0;
	display: block;
}

.catArchive li {
	display: block;
	float: left;
	width: 210px;
	margin: 0 30px 30px 0;
}

.catArchive ul {
	margin: 0;
	padding: 0;
}

.catArchive li li {
	border-bottom: 1px solid #ddd;
	margin: 0;
	padding: 4px 0;
}

.catAlt {
	margin-right: 0 !important;
}
</pre>
<p>Now, save the file. We&#8217;re done!</p>
<p><strong>Note:</strong> Keep in mind that column sizes have been calculated based on the available space (450 pixels) in the default theme&#8217;s content area. So, our columns should each be 210 pixels wide, with a 30 pixels spacing between them.</p>
<p>Since the column shifting is done with the help of <strong>float</strong>, I&#8217;ve set the overflow to hidden to stretch the list full height. This can only work with a fixed given container width, which in our case is 450px set on <strong>.catArchive</strong>.</p>
<p>If your new to &#8220;floating&#8221;, Sarah has posted a fairly easy to understand article about <a href="http://www.bloggingtips.com/2009/02/12/understanding-the-float-property/" target="_blank" title="The CSS float property">the float property</a> on BloggingTips.com.</p>
<p>You can download an archive containing both source files: <a href="http://blogsessive.com/wp-content/plugins/download-monitor/download.php?id=4" title="Download Latest Posts by Category source files"><strong>Download</strong></a>.</p>
<hr /><h3>Free PDF eBook: Corporate Blogging Guide by Blogsessive</h3>As a subscribe reader of Blogsessive, this is my gift to you: a guide to corporate blogging (but not only) that will help you in your blogging adventures! <a href="http://blogsessive.com/wp-content/plugins/download-monitor/download.php?id=8" target="_blank">Download now, for FREE!</a><br /><br /><hr/><div style="background: #eeeeee;">Advertise on Blogsessive! <a href="http://buysellads.com/buy/detail/310/" title="Advertise on Blogsessive">125x125 banners</a> for <strong>$50 per month</strong>!</div>&copy;2008-2010 Copyright by <a href="http://blogsessive.com" title="Blogging tips">Blogsessive - Blogging Tips</a>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href="http://blogsessive.com/contact" title="Contact Blogsessive">contact us</a>, so that we can take legal action immediately.<img src="http://blogsessive.com/?ak_action=api_record_view&id=1047&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blogsessive.com/blogging-tools/latest-posts-by-category-archive/feed/</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>10 Must-See Videos on WordPress.TV</title>
		<link>http://blogsessive.com/blogging-tips/10-must-see-videos-on-wordpresstv/</link>
		<comments>http://blogsessive.com/blogging-tips/10-must-see-videos-on-wordpresstv/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 19:45:34 +0000</pubDate>
		<dc:creator>Alex, Blogsessive</dc:creator>
				<category><![CDATA[Blog Design]]></category>
		<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[Blogging Tools]]></category>
		<category><![CDATA[Coding Tips]]></category>
		<category><![CDATA[guides]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress TV]]></category>

		<guid isPermaLink="false">http://blogsessive.com/?p=938</guid>
		<description><![CDATA[TweetHave you read "How To Be a Rockstar WordPress Designer" yet?As some of you might already know, back on January 17th, the folks at Automattic have launched WordPress.TV, a website they plan on turning into &#8220;Your Visual Resource for All Things WordPress&#8221;. This is a definitely a great project that will undoubtedly become a WordPress [...]]]></description>
			<content:encoded><![CDATA[<div style="float: left; margin-right: 10px; margin-top: 20px;"><a href="http://twitter.com/share" class="twitter-share-button" data-text="10 Must-See Videos on WordPress.TV" data-via="Blogsessive" data-url="http://blogsessive.com/blogging-tips/10-must-see-videos-on-wordpresstv/" data-count="vertical" data-via="Blogsessive" data-related="QBKL:Blog and logo design studio of Alex Cristache from Blogsessive.com">Tweet</a></div><p>With the StudioPress WordPress themes you can really <a href="http://blogsessive.com/go-studiopress/" title="Take Your Blog to a Higher Level" target="ejejcsingle"><strong>take your blog to a higher level</strong></a>!<p>As some of you might already know, back on January 17th, the folks at <a title="Automattic" href="http://automattic.com/" target="_blank">Automattic</a> have launched <strong><a title="WordPress TV" href="http://wordpress.tv/" target="_blank">WordPress.TV</a></strong>, a website they plan on turning into &#8220;Your Visual Resource for All Things WordPress&#8221;.</p>
<p>This is a definitely a great project that will undoubtedly become a WordPress resource hot spot. On what do I base my belief? On the amazing community of people around this extraordinary blogging (and not only) platform that is WordPress.</p>
<p>It&#8217;s enough to check out their support forums and see the kind of involvement that people show, how willing they are to help, solve problems and answer questions. So yes, I think that the WordPress TV will be a success.</p>
<p>The reasons behind this launch are simple. The WordPress community needs a place where video information (news, tutorials and so on) finds its way to people, after passing through a certain quality filter, where it will be kept up to date with ad/spam free.</p>
<p>By the looks of it, after only one week of existence, <a title="One week with WordPress TV" href="http://blog.wordpress.tv/2009/01/23/wordpresstv-and-you-one-week-on/" target="_blank">the community response is amazing</a>.</p>
<p>So, in case you&#8217;ve missed the launch (but not only for this reason), in this post I&#8217;m going to guide you to <strong>10 must-see videos on WordPress.TV</strong>.<span id="more-938"></span> Since the website is fairly new, most of these videos are addressed to WordPress.com users, or users that are new to WordPress in general. So, as a heads-up, those of you with a fair level of knowledge might not find these vids to be very educational or spectacular.</p>
<p>But before we get to those 10 videos, let&#8217;s start with a small WordPress.TV introductory video.</p>
<h3>Welcome to WordPress.TV Video</h3>
<p><embed src="http://v.wordpress.com/DEesBAlR" type="application/x-shockwave-flash" width="630" height="354" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<h3>1. The WordPress.com Dashboard</h3>
<p>New to WordPress and its amazing dashboard? At a first glance, the dashboard might seem like a lot information to digest, but with the new administrative options, the dashboard turn into one of the most important and accessible tools on your blog. (<a title="The WordPress.com dashboard - introduction" href="http://wordpress.tv/2009/01/05/the-wordpresscom-dashboard-introduction/" target="_blank">Video source</a>)</p>
<p><embed src="http://v.wordpress.com/TNpNObS3" type="application/x-shockwave-flash" width="630" height="354" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<h3>2. How to get a post out quickly with QuickPress</h3>
<p>This video walks you through the functions and capabilities of &#8220;QuickPress&#8221;, a section on the dashboard of your self-installed or WordPress.com blog. The purpose of this section is to fasten the publishing of those posts you really need to get out quick, without wasting time with every possible setting available. (<a title="Getting a post out quickly with QuickPress&lt;br &gt;&lt;/a&gt;" href="http://wordpress.tv/2009/01/05/getting-a-post-out-quickly-with-quickpress/" target="_blank">Video source</a>)</p>
<p><embed src="http://v.wordpress.com/MLuVmwS8" type="application/x-shockwave-flash" width="630" height="354" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<h3>3. Moderating recent comments from the dashboard</h3>
<p>Moderating recent comments has just become a whole lot easier with WordPress 2.7&#8242;s new dashboard and this video guides you through the steps you need to take. (<a href="http://wordpress.tv/2009/01/05/moderating-your-recent-comments-from-the-dashboard/" title="Moderating your recent comments from the dashboard<br />
" target="_blank">Video source</a>)</p>
<p><embed src="http://v.wordpress.com/tm75AUjW" type="application/x-shockwave-flash" width="630" height="354" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<h3>4. Adjusting the discussion settings</h3>
<p>This video explains the setting of how will your readers interact with you and your blog through comments. (<a href="http://wordpress.tv/2009/01/05/setting-your-discussion-settings/" title="Setting your discussion settings" target="_blank">Video source</a>)</p>
<p><embed src="http://v.wordpress.com/LQQ5rkRe" type="application/x-shockwave-flash" width="630" height="354" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<h3>5. How to rearrange the post editor to suit your own style</h3>
<p>With WordPress 2.7 it has become a lot easier to configure the Post/Edit screen to suit your own style or writing. You can choose which sections you need displayed and which you don&#8217;t, and even the order they appear in the management area. (<a href="http://wordpress.tv/2009/01/14/rearranging-the-post-editor-to-suit-your-style/" title="Rearranging the post editor to suit your style<br />
" target="_blank">Video source</a>)</p>
<p><embed src="http://v.wordpress.com/1wJPJNqL" type="application/x-shockwave-flash" width="630" height="354" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<h3>6. How to create a static frontpage for your blog</h3>
<p>Sometimes, a recent blog posts archive is not enough to display on your blog&#8217;s homepage. Sometimes, people need to turn their blog homepages in actual landing pages with additional information. Setting up a static page for your blog is a fairly easy task and this video teaches you just how to do it. (<a href="http://wordpress.tv/2009/01/13/creating-a-static-front-page-for-your-blog/" title="Creating a static front page for your blog" target="_blank">Video source</a>)</p>
<p><embed src="http://v.wordpress.com/MLOHB4jk" type="application/x-shockwave-flash" width="630" height="354" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<h3>7. Using the WordPress.com Video Player &#8211; A DemoGirl Tour</h3>
<p><strong>Molly McDonald</strong>, also known as <a href="http://demogirl.com/about/" title="DemoGirl" target="_blank"><strong>DemoGirl</strong></a>, does <strong>an amazing job</strong> at teaching you all you need to know about WordPress.com&#8217;s video player. Quality user videos like this one reinforce my belief in WordPress TV&#8217;s bright future. (<a href="http://wordpress.tv/2009/01/23/using-the-wordpresscom-video-player-a-demogirl-tour/" title="Using the WordPress.com Video Player - A DemoGirl Tour" target="_blank">Video source</a> / <a href="http://demogirl.com" title="DemoGirl" target="_blank">Author website</a>)</p>
<p><embed src="http://v.wordpress.com/BDrqedFr" type="application/x-shockwave-flash" width="630" height="473" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<h3>8. How to change the reading settings</h3>
<p>In this video, you will learn how to adjust the settings of your blog in terms of reading, and thus adjusting the way readers experience your content, whether when reading on-site or in their feed reader. (<a href="http://wordpress.tv/2009/01/05/changing-your-reading-settings/" title="Changing your reading settings" target="_blank">Video source</a>)</p>
<p><embed src="http://v.wordpress.com/oh4INxys" type="application/x-shockwave-flash" width="630" height="354" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<h3>9. Integrating a bbPress Forum with your self-installed WordPress</h3>
<p>This video by <strong><a href="http://bbpress.org/" target="_blank" title="bbPress - Turning WordPress into a forum">bbPress</a> developer <a href="http://unlettered.org/" target="_blank">Sam Bauers</a></strong> guides you through the process of integrating a bbPress forum on your self-installed WordPress blog. Also, this video stands as proof that WordPress developers have now a place to better interact with their community of users through video tutorials. (<a href="http://wordpress.tv/2009/01/23/integrating-a-bbpress-forum-with-your-self-installed-wordpress/" title="Integrating a bbPress Forum with your self-installed WordPress" target="_blank">Video source</a> / <a href="http://unlettered.org/" target="_blank">Author website</a> )</p>
<p><embed src="http://v.wordpress.com/VSHNDg1D" type="application/x-shockwave-flash" width="630" height="354" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<h3>10. CSS-Tricks: Designing for WordPress</h3>
<p>Finally, this 3 part video tutorial by <strong>Chris Coyier of <a href="http://css-tricks.com/" title="CSS Tricks" target="_blank">CSS-Tricks.com</a></strong> takes you through the steps of designing a WordPress from scratch. Since this video is also presented on its author website, I encourage you to view it there, where you also have access to all links and files used.</p>
<p>Here are the links to all three parts of the tutorial:</p>
<ul>
<li><strong>Part one:</strong> <a href="http://css-tricks.com/video-screencasts/25-designing-for-wordpress-part-one/" title="Designing for WordPress: Part One" target="_blank">On CSS-Tricks.com</a> / <a href="http://wordpress.tv/2009/01/23/css-tricks-designing-for-wordpress-part-one-of-three/" title="CSS-Tricks: Designing for WordPress Part One of Three" target="_blank">On WordPress.TV</a></li>
<li><strong>Part two:</strong> <a href="http://css-tricks.com/video-screencasts/26-designing-for-wordpress-part-two/" title="Designing for WordPress: Part Two" target="_blank">On CSS-Tricks.com</a> / <a href="http://wordpress.tv/2009/01/23/css-tricks-designing-for-wordpress-part-two-of-three/" title="CSS-Tricks: Designing for WordPress Part Two of Three" target="_blank">On WordPress.TV</a></li>
<li><strong>Part three:</strong> <a href="http://css-tricks.com/video-screencasts/27-designing-for-wordpress-part-three/" title="Designing for WordPress: Part Three" target="_blank">On CSS-Tricks.com</a> / <a href="http://wordpress.tv/2009/01/23/css-tricks-designing-for-wordpress-part-three-of-three/" title="CSS Tricks: Designing for WordPress Part Three of Three" target="_blank">On WordPress.TV</a></li>
</ul>
<h3>Next, on WordPress.TV&#8230;</h3>
<p>Most probably a lot of great, interesting content. Make sure you <a href="http://wordpress.tv/" title="WordPress TV">bookmark the WordPress.TV website</a>, I&#8217;m sure it will be worthwhile.</p>
<hr /><h3>Free PDF eBook: Corporate Blogging Guide by Blogsessive</h3>As a subscribe reader of Blogsessive, this is my gift to you: a guide to corporate blogging (but not only) that will help you in your blogging adventures! <a href="http://blogsessive.com/wp-content/plugins/download-monitor/download.php?id=8" target="_blank">Download now, for FREE!</a><br /><br /><hr/><div style="background: #eeeeee;">Advertise on Blogsessive! <a href="http://buysellads.com/buy/detail/310/" title="Advertise on Blogsessive">125x125 banners</a> for <strong>$50 per month</strong>!</div>&copy;2008-2010 Copyright by <a href="http://blogsessive.com" title="Blogging tips">Blogsessive - Blogging Tips</a>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href="http://blogsessive.com/contact" title="Contact Blogsessive">contact us</a>, so that we can take legal action immediately.<img src="http://blogsessive.com/?ak_action=api_record_view&id=938&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blogsessive.com/blogging-tips/10-must-see-videos-on-wordpresstv/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>How to Add Your Logo to Simple Balance</title>
		<link>http://blogsessive.com/blogging-tools/simple-balance-logo/</link>
		<comments>http://blogsessive.com/blogging-tools/simple-balance-logo/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 22:48:02 +0000</pubDate>
		<dc:creator>Alex, Blogsessive</dc:creator>
				<category><![CDATA[Blog Design]]></category>
		<category><![CDATA[Blogging Tools]]></category>
		<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[Simple Balance]]></category>

		<guid isPermaLink="false">http://blogsessive.com/?p=891</guid>
		<description><![CDATA[TweetBlogsessive recommends WP WebHost for quality WordPress blog hosting!By popular demand, I decided to publish a short tutorial on how to add your own logo to the Simple Balance WordPress theme. So, in order to achieve this we&#8217;ll walk through the following steps: The logo image guidelines and instructions; Files to update; Code explanation. The [...]]]></description>
			<content:encoded><![CDATA[<div style="float: left; margin-right: 10px; margin-top: 20px;"><a href="http://twitter.com/share" class="twitter-share-button" data-text="How to Add Your Logo to Simple Balance" data-via="Blogsessive" data-url="http://blogsessive.com/blogging-tools/simple-balance-logo/" data-count="vertical" data-via="Blogsessive" data-related="QBKL:Blog and logo design studio of Alex Cristache from Blogsessive.com">Tweet</a></div><p>With the StudioPress WordPress themes you can really <a href="http://blogsessive.com/go-studiopress/" title="Take Your Blog to a Higher Level" target="ejejcsingle"><strong>take your blog to a higher level</strong></a>!<p>By popular demand, I decided to publish a short tutorial on <strong>how to add your own logo</strong> to the <a href="http://blogsessive.com/blogging-tools/download-simple-balance-21-free-wordpress-theme/" title="Download Simple Balance 2.1">Simple Balance WordPress theme</a>.</p>
<p>So, in order to achieve this we&#8217;ll walk through the following steps:</p>
<ol>
<li>The logo image guidelines and instructions;</li>
<li>Files to update;</li>
<li>Code explanation.</li>
</ol>
<p><span id="more-891"></span></p>
<h3>The logo requirements</h3>
<p>In order to achieve the best implementation quality of your logo, you should consider saving you logo with a transparent background. A .gif file will work well, and if you&#8217;re using a software like Adobe Photoshop to edit your images, when saving the image (File > Save for Web &#038; Devices&#8230;), setting the <strong>Matte</strong> to white would be good. This will ensure that the margins of your transparent background logo will look good on Simple Balance&#8217;s light background color.</p>
<p>As you can see on the <a href="http://demo.blogsessive.com/index.php?wptheme=Simple+Balance" title="Simple Balance Theme Demo" target="_blank">live demo</a>, I&#8217;ve used a <a href="http://demo.blogsessive.com/wp-content/themes/simplebalance/img/themes-demo.gif" target="_blank">.gif image</a> for logo, and basically, this is what you are about to achieve with your own blog too.</p>
<p>Once you&#8217;ve saved your image, upload it to the &#8220;img&#8221; folder inside the Simple Balance theme folder (wp-content/themes/simplebalance/img). From here, we&#8217;ll link to it later.</p>
<h4>Quick tips</h4>
<ol>
<li>Save your logo with transparent background;</li>
<li>Save it with a white matte;</li>
<li>Keep the width below 200 pixels, as that&#8217;s the maximum space reserved for the logo;</li>
<li>Write down the size of the image (width and height), as we&#8217;ll use them later.</li>
</ol>
<h3>Adding the logo in your CSS stylesheet</h3>
<p>Now that you have uploaded the logo on your FTP, it&#8217;s time to add it to the design. There&#8217;s only one file you&#8217;ll need to update, and that is <strong>style.css</strong>, which is located in the root folder of the theme.</p>
<p>Open the file with a text editor (a basic Notepad should suffice) and look for this lines of code:</p>
<pre>
.topLogo h1 a, .topLogo h2 a {
	text-decoration: none;
	color: #d90202;
}
</pre>
<p>Select the whole block and replace it with the following code:</p>
<pre>
.topLogo h1 a, .topLogo h2 a {
	text-decoration: none;
	color: #d90202;
	display: block;
	width: 156px;
	height: 42px;
	background: url(img/name-of-your-logo-file.gif) no-repeat;
	text-indent: -9999px;
}
</pre>
<h4 style="margin-top: 25px;">Be careful</h4>
<p>&#8230; and don&#8217;t forget to replace the values in this new block of code with the real values of your image, as follows:</p>
<pre>width: 156px;</pre>
<p>The &#8217;156&#8242; value should be the actual width of your image. &#8217;156&#8242; is only a width I used as an example. Do not delete the &#8216;px&#8217; text as it defines our measuring unit.</p>
<pre>height: 42px;</pre>
<p>The &#8217;42&#8242; value should be the actual height of your image. &#8217;42&#8242; is only a width I used as an example. Again, be careful with the &#8216;px&#8217;.</p>
<pre>background: url(img/name-of-your-logo-file.gif) no-repeat;</pre>
<p>Replace &#8216;name-of-your-logo-file.gif&#8217; with the actual name of your logo file.</p>
<p>The &#8216;display&#8217; and &#8216;text-indent&#8217; properties are meant to ensure the correct display of your logo, so you should not worry about those, but keep them. They are important.</p>
<p>Once you finish the editing, save the file and reupload it to your server. Et voila, the logo should be there the next time you check you blog.</p>
<h3>A good idea&#8230;</h3>
<p>&#8230;would be to go to the Simple Balance Control Panel (WP administration > Design > Simple Balance 2.1/2.0 CP) and uncheck the box that displays the blog description. Of course, only if you think it affect the design, or the new logo in a bad way.</p>
<p>If you have any questions, i&#8217;ll be happy to answer in the comments section of this post.</p>
<hr /><h3>Free PDF eBook: Corporate Blogging Guide by Blogsessive</h3>As a subscribe reader of Blogsessive, this is my gift to you: a guide to corporate blogging (but not only) that will help you in your blogging adventures! <a href="http://blogsessive.com/wp-content/plugins/download-monitor/download.php?id=8" target="_blank">Download now, for FREE!</a><br /><br /><hr/><div style="background: #eeeeee;">Advertise on Blogsessive! <a href="http://buysellads.com/buy/detail/310/" title="Advertise on Blogsessive">125x125 banners</a> for <strong>$50 per month</strong>!</div>&copy;2008-2010 Copyright by <a href="http://blogsessive.com" title="Blogging tips">Blogsessive - Blogging Tips</a>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href="http://blogsessive.com/contact" title="Contact Blogsessive">contact us</a>, so that we can take legal action immediately.<img src="http://blogsessive.com/?ak_action=api_record_view&id=891&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blogsessive.com/blogging-tools/simple-balance-logo/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Feedsessive &#8211; Free, Simple RSS Icon Pack</title>
		<link>http://blogsessive.com/blogging-tools/feedsessive-free-rss-icon-pack/</link>
		<comments>http://blogsessive.com/blogging-tools/feedsessive-free-rss-icon-pack/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 16:36:21 +0000</pubDate>
		<dc:creator>Alex, Blogsessive</dc:creator>
				<category><![CDATA[Blog Design]]></category>
		<category><![CDATA[Blogging Tools]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[Feedsessive]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://blogsessive.com/?p=736</guid>
		<description><![CDATA[TweetDo you need quality design resources? Graphic River has them. Tons! And cheap... It&#8217;s time for a new freebie release! Here is Feedsessive, a free, simple and elegant RSS icon pack for you to use however you wish, in either personal or professional projects, with no restriction. These days I&#8217;ve been working on a new [...]]]></description>
			<content:encoded><![CDATA[<div style="float: left; margin-right: 10px; margin-top: 20px;"><a href="http://twitter.com/share" class="twitter-share-button" data-text="Feedsessive &#8211; Free, Simple RSS Icon Pack" data-via="Blogsessive" data-url="http://blogsessive.com/blogging-tools/feedsessive-free-rss-icon-pack/" data-count="vertical" data-via="Blogsessive" data-related="QBKL:Blog and logo design studio of Alex Cristache from Blogsessive.com">Tweet</a></div><p>Blogsessive recommends WP WebHost for <a href="http://blogsessive.com/go-wpwebhost/" title="WordPress Hosting" target="_blank"><strong>quality WordPress blog hosting</strong></a>!</p><div class="articlefeat" style="text-align: center;"><img title="Feedsessive" src="http://blogsessive.com/wp-content/uploads/2008/11/feedsessive.gif" alt="Free Simple RSS Icons" width="520" height="262" /></div>
<p><!--dfloat-->It&#8217;s time for a new freebie release! Here is <strong>Feedsessive</strong>, a free, simple and elegant RSS icon pack for you to use however you wish, in either personal or professional projects, with no restriction.</p>
<p>These days I&#8217;ve been working on a new project and I needed an RSS icon that is simple and elegant, and after designing one to use in my project, I decided to create a few variations and release them as a pack for those who might need it.</p>
<p><strong>Feedsessive features 50 free RSS icons</strong>, split into 2 two design styles (basic and outlined), each with 25 color variation.</p>
<p>All the RSS icons are available in 3 formats:</p>
<ul>
<li><strong>EPS</strong> (vector) format</li>
<li><strong>PDF</strong> format</li>
<li>Transparent <strong>PNG</strong> format at 300dpi</li>
</ul>
<p><a title="Download Feedsessive" href="http://blogsessive.com/wp-content/plugins/download-monitor/download.php?id=3"><img title="Download Feedsessive" src="http://blogsessive.com/wp-content/uploads/2008/11/download-feedsessive.gif" alt="Download Feedsessive" width="240" height="39" /></a><br />
<small>* Packed size: 2.22 Mb</small><span id="more-736"></span></p>
<p>Here&#8217;s a preview of all the icons in the set:</p>
<div class="articlefeat"><img title="Feedsessive free RSS icon pack" src="http://blogsessive.com/wp-content/uploads/2008/11/feedsessive-free-simple-rss-icon-pack.jpg" alt="" width="588" height="1400" /></div>
<p><a title="Download Feedsessive" href="http://blogsessive.com/wp-content/plugins/download-monitor/download.php?id=3"><img title="Download Feedsessive" src="http://blogsessive.com/wp-content/uploads/2008/11/download-feedsessive.gif" alt="Download Feedsessive" width="240" height="39" /></a><br />
<small>* Packed size: 2.22 Mb</small></p>
<hr /><h3>Free PDF eBook: Corporate Blogging Guide by Blogsessive</h3>As a subscribe reader of Blogsessive, this is my gift to you: a guide to corporate blogging (but not only) that will help you in your blogging adventures! <a href="http://blogsessive.com/wp-content/plugins/download-monitor/download.php?id=8" target="_blank">Download now, for FREE!</a><br /><br /><hr/><div style="background: #eeeeee;">Advertise on Blogsessive! <a href="http://buysellads.com/buy/detail/310/" title="Advertise on Blogsessive">125x125 banners</a> for <strong>$50 per month</strong>!</div>&copy;2008-2010 Copyright by <a href="http://blogsessive.com" title="Blogging tips">Blogsessive - Blogging Tips</a>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href="http://blogsessive.com/contact" title="Contact Blogsessive">contact us</a>, so that we can take legal action immediately.<img src="http://blogsessive.com/?ak_action=api_record_view&id=736&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blogsessive.com/blogging-tools/feedsessive-free-rss-icon-pack/feed/</wfw:commentRss>
		<slash:comments>44</slash:comments>
		</item>
		<item>
		<title>The Blog Post Footer Design Manifesto</title>
		<link>http://blogsessive.com/blogging-tips/blog-post-footer-design/</link>
		<comments>http://blogsessive.com/blogging-tips/blog-post-footer-design/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 21:49:55 +0000</pubDate>
		<dc:creator>Alex, Blogsessive</dc:creator>
				<category><![CDATA[Blog Design]]></category>
		<category><![CDATA[Blogging Tips]]></category>
		<category><![CDATA[Blogging Tools]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[footer]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://blogsessive.com/?p=704</guid>
		<description><![CDATA[TweetHave you read "How To Be a Rockstar WordPress Designer" yet?It’s a proven fact that a blog post’s footer is a “pause zone”. That’s why, people encourage you to place ads there, because you have more chances of catching the eye of your readers. But, if it is a good place to place ads, why [...]]]></description>
			<content:encoded><![CDATA[<div style="float: left; margin-right: 10px; margin-top: 20px;"><a href="http://twitter.com/share" class="twitter-share-button" data-text="The Blog Post Footer Design Manifesto" data-via="Blogsessive" data-url="http://blogsessive.com/blogging-tips/blog-post-footer-design/" data-count="vertical" data-via="Blogsessive" data-related="QBKL:Blog and logo design studio of Alex Cristache from Blogsessive.com">Tweet</a></div><p>Blogsessive recommends WP WebHost for <a href="http://blogsessive.com/go-wpwebhost/" title="WordPress Hosting" target="_blank"><strong>quality WordPress blog hosting</strong></a>!</p><p><!--dfloat-->It’s a proven fact that a blog post’s footer is a “pause zone”. That’s why, people encourage you to place ads there, because you have more chances of catching the eye of your readers.</p>
<p>But, if it is a good place to place ads, why not take it one step further. Sure, some bloggers placed links to social media websites or to related blog posts in that are, but not giving it its deserved design attention minimizes its impact on readers.</p>
<p>Why not treat that area as a separate element of your blog’s structure? Why not take advantage of any of its effects:</p>
<ul>
<li>Encourage further reading;</li>
<li>Promote featured content;</li>
<li>Traffic growth;</li>
<li>Bounce rate reduction;</li>
<li>Social media exposure;</li>
<li>Encourage subscription and many more.</li>
</ul>
<p>As a reader of Blogsessive you must have noticed each post’s footer, and from my experience as Blogsessive’s webmaster, I can confirm that the results are amazing.<span id="more-704"></span></p>
<p>After tweaking the design and encouraging users to subscribe, my subscribers’ count almost doubled in a matter of weeks.</p>
<p>It’s a shame that mostly design blogs have adopted this technique, while other bloggers think that a “ShareThis” widget and a “Related posts” plugin does the job. It does part of the job, when you could get more!</p>
<p>They did, and now pride themselves with a big readership and followship:</p>
<h3 style="margin: 20px 0 10px 0">GoMediaZine.com</h3>
<div class="articlefeat"><a rel="external" href="http://www.gomediazine.com" target="_blank"><img title="GoMediaZine" src="http://blogsessive.com/wp-content/uploads/2008/11/gomediazine.jpg" alt="" width="588" height="411" /></a></div>
<h3 style="margin: 20px 0 10px 0">Devlounge.net</h3>
<div class="articlefeat"><a title="DevLounge" rel="external" href="http://www.devlounge.net" target="_blank"><img title="DevLounge" src="http://blogsessive.com/wp-content/uploads/2008/11/devlounge.jpg" alt="DevLounge" width="588" height="171" /></a></div>
<h3 style="margin: 20px 0 10px 0">Tutorial9.net</h3>
<div class="articlefeat"><a title="Tutorial9" rel="external" href="http://www.tutorial9.net" target="_blank"><img title="Tutorial9" src="http://blogsessive.com/wp-content/uploads/2008/11/tutorial9.jpg" alt="Tutorial9" width="588" height="300" /></a></div>
<h3 style="margin: 20px 0 10px 0">NetTuts.net</h3>
<div class="articlefeat" style="margin-bottom: 20px;"><a title="NetTuts" rel="external" href="http://nettuts.com" target="_blank"><img title="NetTuts" src="http://blogsessive.com/wp-content/uploads/2008/11/nettuts.jpg" alt="NetTuts" width="588" height="333" /></a></div>
<p>The next time you reconsider your blog’s design, keep an eye on this area too. Make sure you use its full power.</p>
<hr /><h3>Free PDF eBook: Corporate Blogging Guide by Blogsessive</h3>As a subscribe reader of Blogsessive, this is my gift to you: a guide to corporate blogging (but not only) that will help you in your blogging adventures! <a href="http://blogsessive.com/wp-content/plugins/download-monitor/download.php?id=8" target="_blank">Download now, for FREE!</a><br /><br /><hr/><div style="background: #eeeeee;">Advertise on Blogsessive! <a href="http://buysellads.com/buy/detail/310/" title="Advertise on Blogsessive">125x125 banners</a> for <strong>$50 per month</strong>!</div>&copy;2008-2010 Copyright by <a href="http://blogsessive.com" title="Blogging tips">Blogsessive - Blogging Tips</a>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href="http://blogsessive.com/contact" title="Contact Blogsessive">contact us</a>, so that we can take legal action immediately.<img src="http://blogsessive.com/?ak_action=api_record_view&id=704&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blogsessive.com/blogging-tips/blog-post-footer-design/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>10 RSS Subscription Box Designs Dissected</title>
		<link>http://blogsessive.com/blogging-tools/rss-subscription-box/</link>
		<comments>http://blogsessive.com/blogging-tools/rss-subscription-box/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 16:31:09 +0000</pubDate>
		<dc:creator>Alex, Blogsessive</dc:creator>
				<category><![CDATA[Blog Design]]></category>
		<category><![CDATA[Blogging Tools]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[subscription]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://blogsessive.com/?p=451</guid>
		<description><![CDATA[TweetWith the StudioPress WordPress themes you can really take your blog to a higher level!It&#8217;s a fact. Readers want RSS updates. They are easier to manage, to search and follow. And when readers wanted them, bloggers provide. Have you ever wanted to subscribe to a blog&#8217;s feed, but no matter how much you searched, you [...]]]></description>
			<content:encoded><![CDATA[<div style="float: left; margin-right: 10px; margin-top: 20px;"><a href="http://twitter.com/share" class="twitter-share-button" data-text="10 RSS Subscription Box Designs Dissected" data-via="Blogsessive" data-url="http://blogsessive.com/blogging-tools/rss-subscription-box/" data-count="vertical" data-via="Blogsessive" data-related="QBKL:Blog and logo design studio of Alex Cristache from Blogsessive.com">Tweet</a></div><p>Do you need <a href="http://blogsessive.com/go-graphicriver/" title="Quality Graphic Design Resources" target="_blank"><strong>quality design resources</strong></a>? Graphic River has them. Tons! And cheap...</p><p><!--dfloat--><img style="float: left; margin-right: 10px;" title="Creative RSS Icon" src="http://blogsessive.com/wp-content/uploads/2008/10/creative-rss-icon.gif" alt="" width="200" height="204" />It&#8217;s a fact. Readers want RSS updates. They are easier to manage, to search and follow. And when readers wanted them, bloggers provide.</p>
<p>Have you ever wanted to subscribe to a blog&#8217;s feed, but no matter how much you searched, you could not find the link? It&#8217;s frustrating!</p>
<p>The <strong>RSS subscription box</strong> is one of the most important elements of your blog&#8217;s design. It offers a good deal of branding solutions and it can turn out to be decisive in your readers&#8217; choice of following (or not) your updates.</p>
<p>Let&#8217;s observe together these <strong>10 RSS subscription box designs</strong> and draw conclusions at the end upon the DO&#8217;s and DON&#8217;T's.<span id="more-451"></span></p>
<h3>FlashDen Blog</h3>
<p class="articlefeat"><a rel="external" href="http://blog.flashden.net/" target="_blank"><img title="flash-den-rss-subscription" src="http://blogsessive.com/wp-content/uploads/2008/10/flash-den-rss-subscription.jpg" alt="FlashDen Blog" width="582" height="200" /></a></p>
<h3>David Torondel</h3>
<p class="articlefeat"><a rel="external" href="http://blog.torondel.net/" target="_blank"><img title="david-torondel-rss-subscription" src="http://blogsessive.com/wp-content/uploads/2008/10/david-torondel-rss-subscription.jpg" alt="David Torondel" width="582" height="200" /></a></p>
<h3>Lutův Blog</h3>
<p class="articlefeat"><a rel="external" href="http://lutor.ic.cz/" target="_blank"><img title="lutuv-blog-rss-subscription" src="http://blogsessive.com/wp-content/uploads/2008/10/lutuv-blog-rss-subscription.jpg" alt="Lutův Blog" width="582" height="200" /></a></p>
<h3>Loodo</h3>
<p class="articlefeat"><a rel="external" href="http://www.loodo.com.br/" target="_blank"><img title="loodo-rss-subscription" src="http://blogsessive.com/wp-content/uploads/2008/10/loodo-rss-subscription.jpg" alt="Loodo" width="582" height="200" /></a></p>
<h3>We Are Not Freelancers</h3>
<p class="articlefeat"><a rel="external" href="http://www.wearenotfreelancers.co.za/" target="_blank"><img title="we-are-not-freelancers-rss-subscription" src="http://blogsessive.com/wp-content/uploads/2008/10/we-are-not-freelancers-rss-subscription.jpg" alt="We Are Not Freelancers" width="582" height="200" /></a></p>
<h3>Adi Pintilie</h3>
<p class="articlefeat"><a rel="external" href="http://www.adipintilie.com/" target="_blank"><img title="adi-pintilie-rss-subscription" src="http://blogsessive.com/wp-content/uploads/2008/10/adi-pintilie-rss-subscription.jpg" alt="Adi Pintilie" width="582" height="200" /></a></p>
<h3>BrumBrum &#8211; Chris Brummel</h3>
<p class="articlefeat"><a rel="external" href="http://chrisbrummel.com/" target="_blank"><img title="brum-brum-rss-subscription" src="http://blogsessive.com/wp-content/uploads/2008/10/brum-brum-rss-subscription.jpg" alt="" width="582" height="200" /></a></p>
<h3>Whitley Journalism</h3>
<p class="articlefeat"><a rel="external" href="http://whitleyjournalism.co.uk/" target="_blank"><img title="whitley-journalism-rss-subscription" src="http://blogsessive.com/wp-content/uploads/2008/10/whitley-journalism-rss-subscription.jpg" alt="Whitley Journalism" width="582" height="200" /></a></p>
<h3>Ciclismo Urbano</h3>
<p class="articlefeat"><a rel="external" href="http://ciclismourbano.info/" target="_blank"><img title="ciclismo-urbano-rss-subscription" src="http://blogsessive.com/wp-content/uploads/2008/10/ciclismo-urbano-rss-subscription.jpg" alt="Ciclismo Urbano" width="582" height="200" /></a></p>
<h3>BienBienBien</h3>
<p class="articlefeat"><a rel="external" href="http://bienbienbien.net/" target="_blank"><img title="bien-bien-bien-rss-subscription" src="http://blogsessive.com/wp-content/uploads/2008/10/bien-bien-bien-rss-subscription.jpg" alt="BienBienBien" width="582" height="200" /></a></p>
<h3>RSS Subscription Design Tips</h3>
<p>Nice designs right? So, based on them, what conclusions can be drawn?</p>
<h4>RSS placement</h4>
<ul>
<li>The link must be visible;</li>
<li>Best choices are the top banner (header) and top of sidebar (s).</li>
</ul>
<h4>RSS link size</h4>
<ul>
<li>Definitely not huge;</li>
<li>Medium works best;</li>
<li>Good placement can compensate for a smaller size.</li>
</ul>
<h4>RSS design</h4>
<ul>
<li>Casual users are used to the RSS logo;</li>
<li>Integrate the design with the overall blog layout;</li>
<li>Play with the icon, but keep some elements of the original design.</li>
</ul>
<h4>Extra options</h4>
<ul>
<li>Add a message, encourage visitors to subscribe;</li>
<li>Add an email delivery option.</li>
</ul>
<p>I&#8217;m sure that if you follow these (not so many) rules, <strong>your RSS subscription box will definitely boost your subscriber count</strong>, not to mention the good effects on your blog&#8217;s design.</p>
<p><small><strong>Note:</strong> This post marked the launch of a new post category on Blogsessive &#8211; <a title="Blog Design Tips" href="http://blogsessive.com/archive/blogging-tools/blog-design/"><strong>Blog Design</strong></a> &#8211; covering design tips and inspiration.</small></p>
<hr /><h3>Free PDF eBook: Corporate Blogging Guide by Blogsessive</h3>As a subscribe reader of Blogsessive, this is my gift to you: a guide to corporate blogging (but not only) that will help you in your blogging adventures! <a href="http://blogsessive.com/wp-content/plugins/download-monitor/download.php?id=8" target="_blank">Download now, for FREE!</a><br /><br /><hr/><div style="background: #eeeeee;">Advertise on Blogsessive! <a href="http://buysellads.com/buy/detail/310/" title="Advertise on Blogsessive">125x125 banners</a> for <strong>$50 per month</strong>!</div>&copy;2008-2010 Copyright by <a href="http://blogsessive.com" title="Blogging tips">Blogsessive - Blogging Tips</a>. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. Please <a href="http://blogsessive.com/contact" title="Contact Blogsessive">contact us</a>, so that we can take legal action immediately.<img src="http://blogsessive.com/?ak_action=api_record_view&id=451&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blogsessive.com/blogging-tools/rss-subscription-box/feed/</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
	</channel>
</rss>
