<?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>SidekickBlog &#187; design</title>
	<atom:link href="http://sidekickblog.com/category/design/feed" rel="self" type="application/rss+xml" />
	<link>http://sidekickblog.com</link>
	<description>How to build an online empire</description>
	<lastBuildDate>Mon, 19 Oct 2009 08:07:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Howto: Add footer widgets to the Mimbo theme</title>
		<link>http://sidekickblog.com/howto-add-footer-widgets-to-the-mimbo-theme-331.htm</link>
		<comments>http://sidekickblog.com/howto-add-footer-widgets-to-the-mimbo-theme-331.htm#comments</comments>
		<pubDate>Fri, 12 Jun 2009 06:45:35 +0000</pubDate>
		<dc:creator>Kunal Jain</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Mimbo]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[widgets]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://sidekickblog.com/?p=331</guid>
		<description><![CDATA[I had promised (weeks ago) to post a tutorial on how to add footer widgets to the Mimbo 3.0 theme once I figured out how to add them to http://www.recipemobile.com.  Although, I was able to make the necessary tweaks to recipemobile, I have not had the time to post a tutorial.  So, for now, I [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I had promised (weeks ago) to post a tutorial on how to add footer widgets to the Mimbo 3.0 theme once I figured out how to add them to http://www.recipemobile.com.  Although, I was able to make the necessary tweaks to recipemobile, I have not had the time to post a tutorial.  So, for now, I am publishing the code I have added to enable the footer widgets.  I hope to be able to update this post to a full tutorial soon.</p>
<p>You will have to edit 3 files in your theme:</p>
<h3>Functions.php</h3>
<p>In functions.php, add the following code under the existing widget code:<br />
if ( function_exists(&#8217;register_sidebar&#8217;) )<br />
register_sidebar(array(<br />
&#8216;name&#8217; =&gt; &#8216;Mimbo Footerbar1&#8242;,<br />
&#8216;before_widget&#8217; =&gt; &#8216;&lt;div class=&#8221;clearfloat&#8221;&gt;&#8217;,<br />
&#8216;after_widget&#8217; =&gt; &#8216;&lt;/div&gt;&#8217;,<br />
&#8216;before_title&#8217; =&gt; &#8216;&lt;h3 class=&#8221;widgettitle&#8221;&gt;&#8217;,<br />
&#8216;after_title&#8217; =&gt; &#8216;&lt;/h3&gt;&#8217;,<br />
));</p>
<p>if ( function_exists(&#8217;register_sidebar&#8217;) )<br />
register_sidebar(array(<br />
&#8216;name&#8217; =&gt; &#8216;Mimbo Footerbar2&#8242;,<br />
&#8216;before_widget&#8217; =&gt; &#8216;&lt;div class=&#8221;clearfloat&#8221;&gt;&#8217;,<br />
&#8216;after_widget&#8217; =&gt; &#8216;&lt;/div&gt;&#8217;,<br />
&#8216;before_title&#8217; =&gt; &#8216;&lt;h3 class=&#8221;widgettitle&#8221;&gt;&#8217;,<br />
&#8216;after_title&#8217; =&gt; &#8216;&lt;/h3&gt;&#8217;,<br />
));</p>
<p>if ( function_exists(&#8217;register_sidebar&#8217;) )<br />
register_sidebar(array(<br />
&#8216;name&#8217; =&gt; &#8216;Mimbo Footerbar3&#8242;,<br />
&#8216;before_widget&#8217; =&gt; &#8216;&lt;div class=&#8221;clearfloat&#8221;&gt;&#8217;,<br />
&#8216;after_widget&#8217; =&gt; &#8216;&lt;/div&gt;&#8217;,<br />
&#8216;before_title&#8217; =&gt; &#8216;&lt;h3 class=&#8221;widgettitle&#8221;&gt;&#8217;,<br />
&#8216;after_title&#8217; =&gt; &#8216;&lt;/h3&gt;&#8217;,<br />
));</p>
<h3>Footer.php</h3>
<p>In the footer.php file, add the following code right under the footer div definition:</p>
<div id="footerbar" class="clearfloat">&lt;div id=&#8221;footerbar&#8221; class=&#8221;clearfloat&#8221;&gt;<br />
&lt;div id=&#8221;footerbar1&#8243;&gt;<br />
&lt;h3&gt;1st heading&lt;/h3&gt;<br />
&lt;?php if ( !function_exists(&#8217;dynamic_sidebar&#8217;) || !dynamic_sidebar(&#8217;Mimbo Footerbar1&#8242;) ) : ?&gt;&lt;?php endif; ?&gt;<br />
&lt;/div&gt;<br />
&lt;div id=&#8221;footerbar2&#8243;&gt;<br />
&lt;h3&gt;2nd heading&lt;/h3&gt;<br />
&lt;?php if ( !function_exists(&#8217;dynamic_sidebar&#8217;) || !dynamic_sidebar(&#8217;Mimbo Footerbar2&#8242;) ) : ?&gt;&lt;?php endif; ?&gt;<br />
&lt;/div&gt;<br />
&lt;div id=&#8221;footerbar3&#8243;&gt;<br />
&lt;h3&gt;2rd heading&lt;/h3&gt;<br />
&lt;?php if ( !function_exists(&#8217;dynamic_sidebar&#8217;) || !dynamic_sidebar(&#8217;Mimbo Footerbar3&#8242;) ) : ?&gt;&lt;?php endif; ?&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;</div>
<h3>Style.css</h3>
<p>Now, all you have to do is edit your style.css files to add the appropriate styling to the footers.  This is the css code that I have used to get you started.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#footerbar</span> <span style="color: #00AA00;">&#123;</span>
        <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
        <span style="color: #000000; font-weight: bold;">clear</span><span style="color: #00AA00;">:</span><span style="color: #993333;">both</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin-top</span><span style="color: #00AA00;">:</span><span style="color: #933;">-10px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">list-style-type</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">list-style-image</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin-bottom</span><span style="color: #00AA00;">:</span><span style="color: #933;">15px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #cc00cc;">#footerbar</span> ul <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">15px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #cc00cc;">#footerbar</span> h3 <span style="color: #00AA00;">&#123;</span>
        <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#dadada</span><span style="color: #00AA00;">;</span>
        <span style="color: #000000; font-weight: bold;">font-family</span><span style="color: #00AA00;">:</span> <span style="color: #ff0000;">'Tempus Sans ITC'</span><span style="color: #00AA00;">,</span><span style="color: #ff0000;">'Bradley Hand ITC'</span><span style="color: #00AA00;">,</span><span style="color: #ff0000;">'Comic Sans MS'</span><span style="color: #00AA00;">,</span><span style="color: #ff0000;">'Zapf-Chancery'</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">cursive</span><span style="color: #00AA00;">;</span>
        <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">18px</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">letter-spacing</span><span style="color: #00AA00;">:</span><span style="color: #933;">0.15em</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #933;">0px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #cc00cc;">#footerbar</span> h3<span style="color: #6666ff;">.widgettitle</span> <span style="color: #00AA00;">&#123;</span>
        <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#dadada</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span><span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #cc00cc;">#footerbar</span> a <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #cc00cc;">#footerbar1</span> <span style="color: #00AA00;">&#123;</span>
        <span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin-right</span><span style="color: #00AA00;">:</span><span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
        <span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #cc00cc;">#footerbar2</span> <span style="color: #00AA00;">&#123;</span>
        <span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">;</span>
        <span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #cc00cc;">#footerbar3</span> <span style="color: #00AA00;">&#123;</span>
        <span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin-left</span><span style="color: #00AA00;">:</span><span style="color: #933;">5px</span><span style="color: #00AA00;">;</span>
        <span style="color: #00AA00;">&#125;</span>		
&nbsp;
<span style="color: #cc00cc;">#footerbar1</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#footerbar2</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#footerbar3</span> <span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;"><span style="color: #cc66cc;">32</span>%</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p align="left"><a class="tt" href="http://twitter.com/home/?status=Howto%3A+Add+footer+widgets+to+the+Mimbo+theme+www.bit.ly/56Ogf" title="Post to Twitter"><img class="nothumb" src="http://sidekickblog.com/wordpress/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a></p>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://sidekickblog.com/howto-add-footer-widgets-to-the-mimbo-theme-331.htm/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Make use of your blog&#8217;s footer</title>
		<link>http://sidekickblog.com/use-your-blog-footer-311.htm</link>
		<comments>http://sidekickblog.com/use-your-blog-footer-311.htm#comments</comments>
		<pubDate>Sat, 02 May 2009 04:50:54 +0000</pubDate>
		<dc:creator>Kunal Jain</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[content]]></category>

		<guid isPermaLink="false">http://sidekickblog.com/?p=311</guid>
		<description><![CDATA[Introduction
I love blogs with interesting footers.  In a typical blog, the footer describes the bottom of the website below the dynamic content and sidebars.  This area often does not receive the attention it deserves and is often used only for copyright information or some navigation links.  
I believe that a well designed footer can greatly [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<h3>Introduction</h3>
<p>I love blogs with interesting footers.  In a typical blog, the footer describes the bottom of the website below the dynamic content and sidebars.  This area often does not receive the attention it deserves and is often used only for copyright information or some navigation links.  </p>
<p>I believe that a well designed footer can greatly increase a blog&#8217;s functionality and visual appeal.  Consequently when rating Wordpress themes, I give more importance to those that allow you to customize footers easily by using footer widgets.  Footers can be used in a variety of ways.</p>
<h3>Some of the ways footers can be used</h3>
<p style="text-align: center;"><a href="http://www.mint.com"><img class="size-full wp-image-321 aligncenter" title="seofooter" src="http://sidekickblog.com/wordpress/wp-content/uploads/2009/05/seofooter.png" alt="seofooter" width="502" height="102" /></a></p>
<p><strong>Links to important posts, pages:</strong>  This will help expose sections of your blog that need more visitors.  I have read that this also helps in SEO (although how much is debatable).  Take a look at the footer of <a href="http://www.mint.com">mint.com</a>.  I am sure that all those key words and phrases have to be adding positive SEO value to their website.</p>
<p style="text-align: center;"><a href="http://fortysevenmedia.com/"><img class="size-full wp-image-318 aligncenter" title="linksfooter" src="http://sidekickblog.com/wordpress/wp-content/uploads/2009/05/linksfooter.png" alt="linksfooter" width="502" height="102" /></a></p>
<p><strong>Guide your visitors to their next destination:</strong> Users reaching the end of the content on a particular page are usually itching to find something else to browse.  Unless you provide them fresh content they might just jump to another website.  If nothing else, just put a PPC ad over there.  Google link units are another option but they can look ugly. </p>
<p style="text-align: center;"><a href="http://www.problogger.com"><img class="size-full wp-image-316 aligncenter" title="affiliatefooter" src="http://sidekickblog.com/wordpress/wp-content/uploads/2009/05/affiliatefooter.png" alt="affiliatefooter" width="502" height="102" /></a></p>
<p><strong>Affiliate links &amp; advertisements to your own products (and other blogs): </strong>It can be argued that a high percentage of viewers who have read your blog till the bottom of the page are interested in what you have to say and would be easiser to sell to.  Take a look at the above footer snapshot from Problogger.com.  Renowned blogger Darren Rowse uses his footer to list his &#8216;Recommended Money Makers&#8217; which probably contain affiliate links.  Since he blogs about blogging and has a popular &#8216;making money through blogging&#8217; section, these links are a perfect fit for his website.  </p>
<p>Visitors that like the look of your website often look in the footer for theme attributions.  If you use a premium theme that has an affiliate program, you should definately enroll and include an affiliate link to the theme in the footer.  A short positive review of the premium theme is also recommended.</p>
<p style="text-align: center;"><a href="http://www.bcandullo.com/"><img class="size-full wp-image-317 aligncenter" title="contactfooter" src="http://sidekickblog.com/wordpress/wp-content/uploads/2009/05/contactfooter.png" alt="contactfooter" width="502" height="102" /></a></p>
<p><strong>Stash content that you need on every page but does not have to be immediately visible:</strong>  This may include reciprocal links to blog directories and other links that help to promote your own blog.  Also, a contact form can be included here as visitors that want to contact you will usually make an effort to look around for the form. </p>
<p style="text-align: center;"><a href="http://blog.wireroses.co.uk/"><img class="size-full wp-image-319 aligncenter" title="looksfooter" src="http://sidekickblog.com/wordpress/wp-content/uploads/2009/05/looksfooter.png" alt="looksfooter" width="502" height="102" /></a></p>
<p><strong>Improve your blog&#8217;s looks:</strong> Most blog footers load last and so do not interfere with the accessibility with the rest of the blog&#8217;s content.  This means that all that cool art and images that you have been hesitating to put on your blog because you fear increased load times can go in the footer (Ofcourse this does not mean you do not web optimize the images.)  If done in the right way, this can do wonders in adding personality to your blog. </p>
<h3>Conclusion</h3>
<p>I am really glad the theme I am using currently for this blog came with footer widgets.  This helped me get started with using the footer effectively before I learned how to customize footers myself.  Unfortunately, the Mimbo 3.0 theme I recently switched Recipe Mobile to did not come with footer widgets.  I will try to add these myself over the weekend and will post details on this blog.  Eventually, I would also love to add some image elements there (if somebody would only help me with the art!)</p>
<p>Have you used footer on your blog in interesting ways or have seen it done on any other blog?  Do you believe that footers should get the same attention as sidebars and mastheads?  </p>
<blockquote><p>Please subsribe to my <a href="http://feeds2.feedburner.com/Sidekickblog" target="_self">RSS feed</a> to receive updates of more articles like these.  If you find these articles useful please spread the word by using the Digg, StumbleUpon or Twitter buttons.</p></blockquote>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Make+use+of+your+blog%E2%80%99s+footer+www.bit.ly/uPhVi" title="Post to Twitter"><img class="nothumb" src="http://sidekickblog.com/wordpress/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a></p>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://sidekickblog.com/use-your-blog-footer-311.htm/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Mimbo Theme: Child theme tweaks part 2</title>
		<link>http://sidekickblog.com/mimbo-theme-child-theme-tweaks-part-2-288.htm</link>
		<comments>http://sidekickblog.com/mimbo-theme-child-theme-tweaks-part-2-288.htm#comments</comments>
		<pubDate>Fri, 24 Apr 2009 08:49:24 +0000</pubDate>
		<dc:creator>Kunal Jain</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Mimbo]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://sidekickblog.com/?p=288</guid>
		<description><![CDATA[This article is part of an ongoing series where I share my experiences with modifying Recipe Mobile to use the Mimbo theme.  You can see the related articles here.
Introduction
In this article, I will show you how to change the hover states of important objects in your Mimbo theme.  These include:

The page navigation bar link hover [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<blockquote><p>This article is part of an ongoing series where I share my experiences with modifying Recipe Mobile to use the Mimbo theme.  You can see the related articles <a href="http://sidekickblog.com/how-to-modify-the-mimbo-30-theme-285.htm">here</a>.</p></blockquote>
<h3>Introduction</h3>
<p>In this article, I will show you how to change the hover states of important objects in your Mimbo theme.  These include:</p>
<ol>
<li>The page navigation bar link hover color</li>
<li>The category bar link hover color</li>
<li>The hover effect of the lead story background</li>
<li>The default link hover colors<span id="more-288"></span></li>
</ol>
<p>These items are indicated in the picture below</p>
<p><img class="aligncenter size-full wp-image-299" title="child-theme-tweaks-2" src="http://sidekickblog.com/wordpress/wp-content/uploads/2009/04/child-theme-tweaks-2.png" alt="child-theme-tweaks-2" width="466" height="439" /></p>
<h3>Change the hover color of the page navigation bar links</h3>
<p>Add the following code to your child theme &#8217;style.css&#8217; file&#8217; to change the color:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#nav</span> a<span style="color: #3333ff;">:hover </span><span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#FFF</span> !important<span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Change the hex code after <strong>color:</strong> to your preference.</p>
<h3>Change the default hover color for all the links in the page</h3>
<p>Add the following code to use a different default color for the hover state of the links on your website:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">a<span style="color: #3333ff;">:hover</span><span style="color: #00AA00;">,</span> a<span style="color: #3333ff;">:active </span><span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#1E771E</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">text-decoration</span><span style="color: #00AA00;">:</span><span style="color: #993333;">underline</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Notice that in my code, I have maintained the same color as the hover state for the link active state as well.  If you do not wish to do the same, remove the <strong>a:active</strong> reference (don&#8217;t forget to remove the &#8216;,&#8217; before it) from the above code before pasting it into your stylesheet.  Change the hex color code after <strong>color:</strong> to your preference.</p>
<h3>Remove the hover color change effect from the lead story background</h3>
<p>I find the lead story background color change effect that comes as default with the Mimbo theme distracting and a bit tacky.  To remove this effect,  add the following code to your child theme &#8217;style.css&#8217; file.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#lead</span><span style="color: #3333ff;">:hover </span><span style="color: #00AA00;">&#123;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#E36666</span><span style="color: #00AA00;">;</span>
&nbsp;
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Change the hex code after <strong>background:</strong> to match the color in your non hover state.  What I am basically doing here is changing the code between the parenthesis in my <strong>#lead:hover </strong>reference to match the code in my <strong>#lead</strong> reference.</p>
<h3>Change the category bar title hover color</h3>
<p>To change the hover color in the category titles in the &#8216;cat-nav&#8217; bar, use the following code in your child theme:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#nav-cat</span> a<span style="color: #3333ff;">:hover</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#nav-cat</span> a<span style="color: #3333ff;">:active </span><span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#1E771E</span> !important<span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Notice that in my code, I have maintained the same color for the link active state as well.  If you do not wish to do the same, remove the <strong>#nav-cat a:active</strong> reference (don&#8217;t forget to remove the &#8216;<strong>,</strong>&#8216; before it) from the above code before pasting it into your stylesheet.  Change the color to your preference.</p>
<h3>Conclusion</h3>
<p>That takes care of most of the hover state design changes I made.  Do let me know if you think anything is missing or if you would like specific help with any of these or other design changes.</p>
<blockquote><p>Please subsribe to my <a href="http://feeds2.feedburner.com/Sidekickblog" target="_self">RSS feed</a> to receive updates of more articles like these.  If you found this article useful please spread the word by using the Digg, StumbleUpon or Twitter buttons.</p></blockquote>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Mimbo+Theme%3A+Child+theme+tweaks+part+2+www.bit.ly/150biq" title="Post to Twitter"><img class="nothumb" src="http://sidekickblog.com/wordpress/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a></p>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://sidekickblog.com/mimbo-theme-child-theme-tweaks-part-2-288.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to modify the Mimbo 3.0 theme</title>
		<link>http://sidekickblog.com/how-to-modify-the-mimbo-30-theme-285.htm</link>
		<comments>http://sidekickblog.com/how-to-modify-the-mimbo-30-theme-285.htm#comments</comments>
		<pubDate>Thu, 23 Apr 2009 13:05:56 +0000</pubDate>
		<dc:creator>Kunal Jain</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[Mimbo]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://sidekickblog.com/?p=285</guid>
		<description><![CDATA[The links below point to a series of articles on my blog about modifying the popular Mimbo 3.0 theme for Wordpress.  These posts come from my experience in changing the wordpress theme on my food website Recipe Mobile.  The reasons why I decided to change the theme are detailed here.  These are the reasons I [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>The links below point to a series of articles on my blog about modifying the popular Mimbo 3.0 theme for Wordpress.  These posts come from my experience in changing the wordpress theme on my food website <a href="http://www.recipemobile.com" target="_self">Recipe Mobile</a>.  The reasons why I decided to change the theme are detailed <a href="http://sidekickblog.com/changing-the-wordpress-theme-used-by-recipe-mobile-226.htm" target="_self">here</a>.  <a href="http://sidekickblog.com/recipe-mobile-now-uses-the-mimbo-30-theme-233.htm" target="_self">These</a> are the reasons I chose to go with the Mimbo 3.0 theme and <a href="http://sidekickblog.com/advantages-of-working-with-wordpress-child-themes-239.htm" target="_self">this</a> is why I recommend using child themes to make design tweaks to your Wordpress blog.</p>
<p><a href="http://sidekickblog.com/modifying-the-mimbo-theme-parent-theme-modifications-242.htm" target="_self">Making parent theme modifications</a>: This is the first part of the posts where I detail what parent theme modifications I made to the Mimbo theme.  Future posts are pending.</p>
<p><a href="http://sidekickblog.com/modifying-the-mimbo-theme-child-theme-tweaks-part-1-275.htm" target="_self">Modifications using the child theme</a>:  This is the first part in the series of posts where I show what modifications can be made using a child theme.  <a href="http://sidekickblog/mimbo-theme-child-theme-tweaks-part-2">Part 2</a> of the child theme changes deal with modifications of the hover state of theme items.  Other posts that deal with modifying the child theme are still to come</p>
<blockquote><p>Please subsribe to my <a href="http://feeds2.feedburner.com/Sidekickblog" target="_self">RSS feed</a> to receive updates of more articles like these.  If you find these articles useful please spread the word by using the Digg, StumbleUpon or Twitter buttons.</p></blockquote>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=How+to+modify+the+Mimbo+3.0+theme+www.bit.ly/tDrbX" title="Post to Twitter"><img class="nothumb" src="http://sidekickblog.com/wordpress/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a></p>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://sidekickblog.com/how-to-modify-the-mimbo-30-theme-285.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modifying the Mimbo Theme: Child theme tweaks part 1</title>
		<link>http://sidekickblog.com/modifying-the-mimbo-theme-child-theme-tweaks-part-1-275.htm</link>
		<comments>http://sidekickblog.com/modifying-the-mimbo-theme-child-theme-tweaks-part-1-275.htm#comments</comments>
		<pubDate>Tue, 21 Apr 2009 06:22:32 +0000</pubDate>
		<dc:creator>Kunal Jain</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Mimbo]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://sidekickblog.com/?p=275</guid>
		<description><![CDATA[This article is part of an ongoing series where I share my experiences with modifying Recipe Mobile to use the Mimbo theme.  You can see the related articles here.
Introduction
I apologize for the delay.  I work on many project at the same time and though most of the updates to the new Recipe Mobile website are [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<blockquote><p>This article is part of an ongoing series where I share my experiences with modifying Recipe Mobile to use the Mimbo theme.  You can see the related articles <a href="http://sidekickblog.com/how-to-modify-the-mimbo-30-theme-285.htm">here</a>.</p></blockquote>
<h3>Introduction</h3>
<p>I apologize for the delay.  I work on many project at the same time and though most of the updates to the new <a href="http://www.recipemobile.com/" target="_blank">Recipe Mobile</a> website are in place, I have not had a chance to publish details in this blog as I had said I would.</p>
<p>Anyway, here is a start.  The <a href="http://sidekickblog.com/modifying-the-mimbo-theme-parent-theme-modifications-242.htm" target="_self">last article</a> in the <a href="http://sidekickblog.com/how-to-modify-the-mimbo-30-theme-285.htm" target="_self">Modifying the Mimbo theme series</a> dealt with making certain changes to the index.php &amp; header.php template files in the parent theme itself.  Now, this section is the first that will talk about modifications that can be made using a child theme.  I have already written about the <a href="http://sidekickblog.com/advantages-of-working-with-wordpress-child-themes-239.htm" target="_self">advantages of styling Wordpress blogs using child themes</a> and today I will show you how.</p>
<p>While the functionality of the Mimbo theme is great, I am not a fan of the greyish tones used in it by default.  The first theme I used on the Recipe Mobile website had a strong red background with green elements.  Initially, I was unsure that it would look good, but Deepa loved it and so I let it be.  Eventually, it grew on me andI realized it gave the website a unique look.  I wanted some continuity by maintaining a similar color scheme after the theme change. For that I had to change the colors of several elements of the Mimbo theme.  </p>
<p>In this article, I will be focusing on the major areas, where changing the color completely changed the look of the theme.  These areas are:</p>
<ol>
<li>The website background</li>
<li>The category bar background, and </li>
<li>The lead story background.</li>
</ol>
<p><span id="more-275"></span></p>
<p>The below image is a snapshot of the Mimbo 3.0 theme demo.  The areas I will be talking about are indicated.</p>
<p><img class="aligncenter size-full wp-image-276" title="mimbo1" src="http://sidekickblog.com/wordpress/wp-content/uploads/2009/04/mimbo1.png" alt="mimbo1" width="491" height="495" /></p>
<h3>How to change the website background color</h3>
<p>Considering how different the new Mimbo theme is from the old theme, using a the same red color for the new back ground was one of the ways I could maintain some continuity across the theme change.</p>
<p>The original Mimbo theme has a drab grey background colour that might not suit many websites.  You can change it easily by copying the following code into your child theme</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">body <span style="color: #00AA00;">&#123;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#C60001</span>
&nbsp;
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Change the hex code after <strong>background: </strong>to correspond to the color you want.  This will override the background colour instructions in the parent theme.</p>
<h3>How to change the category bar background color</h3>
<p>Green was the other color that I wanted to transfer over from the old theme and the prominent category bar in the Mimbo theme seemed like the appropriate place to use it.  The way to do this is to add the following code to your child theme.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#nav-cat</span> <span style="color: #00AA00;">&#123;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#7DA939</span> !important<span style="color: #00AA00;">;</span>
&nbsp;
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Again, change the hex code for your color preference.</p>
<h3>How to change the lead story background color</h3>
<p>The lead story section is one of the more interesting features of the Mimbo theme and I really like the way it is designed.  However, I felt that the original gray color was not standing out enough.  Originally, I decided to colour it the same red as the website background but that was too strong and I finally settled for a lighter shade of red (closer to pink).  I am still undecided about this but I have kept it here for now.  I would love to hear your comments about this choice of color. </p>
<p>Here is how you can change the background of the lead story:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#lead</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#E36666</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">border-bottom</span><span style="color: #00AA00;">:</span><span style="color: #933;">3px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#E36666</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">border-right</span><span style="color: #00AA00;">:</span><span style="color: #933;">3px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#E36666</span><span style="color: #00AA00;">;</span>
	<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Copy the above code into the child theme.  Change the hex code after <strong>background:</strong> to the color of your choice.  Notice that this code also changes the border colors of the lead story box.  You can change this if you like.</p>
<h3>Conclusions</h3>
<p>Please let me know if you found the above instructions helpful, if there are any errors and if you think I can provide any additional details.  I would love to answer any questions you might have.</p>
<p>This takes care of the background colors for some of the major sections of the theme.  In the <a href="http://sidekickblog/mimbo-theme-child-theme-tweaks-part-2">next post of the series</a> I will publish how the hover colors and effects can be changed to fit into the rest of the color scheme.  </p>
<blockquote><p>Please subsribe to my <a href="http://feeds2.feedburner.com/Sidekickblog" target="_self">RSS feed</a> to receive updates of more articles like these.  If you found this article useful please spread the word by using the Digg, StumbleUpon or Twitter buttons.</p></blockquote>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Modifying+the+Mimbo+Theme%3A+Child+theme+tweaks+part+1+www.bit.ly/4eAL7M" title="Post to Twitter"><img class="nothumb" src="http://sidekickblog.com/wordpress/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a></p>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://sidekickblog.com/modifying-the-mimbo-theme-child-theme-tweaks-part-1-275.htm/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Modifying the Mimbo theme: Parent theme modifications</title>
		<link>http://sidekickblog.com/modifying-the-mimbo-theme-parent-theme-modifications-242.htm</link>
		<comments>http://sidekickblog.com/modifying-the-mimbo-theme-parent-theme-modifications-242.htm#comments</comments>
		<pubDate>Wed, 15 Apr 2009 15:09:30 +0000</pubDate>
		<dc:creator>Kunal Jain</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[Mimbo]]></category>
		<category><![CDATA[recipemobile]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://sidekickblog.com/?p=242</guid>
		<description><![CDATA[Having finally decided to go with the Mimbo Wordpress theme for Recipe Mobile, it was time for me to start customizing it.  The themes author, Darren Hoyt, recommends that style customizations should be made using child themes so that changes can be retained across future upgrades.  I have heard mention of child themes several times [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Having finally <a href="http://sidekickblog.com/recipe-mobile-now-uses-the-mimbo-30-theme-233.htm">decided to go with the Mimbo</a> Wordpress theme for <a href="http://www.recipemobile.com/" target="_blank">Recipe Mobile</a>, it was time for me to start customizing it.  The themes author, Darren Hoyt, recommends that style customizations should be made using child themes so that changes can be retained across future upgrades.  I have heard mention of child themes several times before but have never delved into it before. </p>
<p>Luckily, Darren provides a child theme called Vintage Green on the same download page to help get started.  Installing a child theme is similar to installing a regular Wordpress theme.  You unzip and upload the theme folder to your ‘wp-content/themes’ folder and activate it from Appearance-Themes on your Wordpress dashboard.  Make sure the parent theme folder is also present in the themes folder. (Note: The child theme folder does not go into the parent theme folder but within the Themes folder itself.)  The child theme contains references to its parent theme already so every thing should happen smoothly</p>
<p>I have been customizing Mimbo using a child theme for only a few hours now and have already seen the benefits of using a child theme.  The only code changes that I have had to make in the parent themes files were to:<span id="more-242"></span></p>
<h3>Increase the number of ‘Recent Posts’ from 4 to 10</h3>
<p>This was done easily by modifying the index.php file (in the parent theme) and changing the maximum post count from 4 to 10.  This is the modified code that you would use:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">  <span style="color: #b1b100;">elseif</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$postcount</span> <span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #cc66cc;">0</span> <span style="color: #339933;">&amp;</span>amp<span style="color: #339933;">;&amp;</span>amp<span style="color: #339933;">;</span> <span style="color: #000088;">$postcount</span> <span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;=</span> <span style="color: #cc66cc;">10</span> <span style="color: #009900;">&#41;</span></pre></div></div>

<h3>Prevent duplication of content between ‘Featured Categories’ and ‘Recent Posts’</h3>
<p>This can be partly achieved by modifying the index.php file to exclude posts from the featured categories from displaying in the Recent Posts timeline (which is really the main timeline that shows up in most blogs).  The code for this is:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>in_category<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'33'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;</span>amp<span style="color: #339933;">;&amp;</span>amp<span style="color: #339933;">;</span> is_home<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">continue</span><span style="color: #339933;">;</span></pre></div></div>

<p>Add the above code above the <strong>&lt;div class=&#8221;clearfloat recent-excerpts&#8221;&gt;</strong> line.  Make sure it is contained within <strong>php</strong> tags.  This works well if your posts are usually categorized only in one category.  However, since many of the recipes belong to several categories, this method is not a 100% effective for me.  I am still trying to find a better solution to the problem.</p>
<h3>Removing certain categories from the category navigation bar under the page title</h3>
<p>The category navigation bar is one of the most prominent parts of the Mimbo theme.  I edited the <strong>wp_list_categories</strong> code in the header.php file to exclude the categories that were already in the featured categories section.  The code is now <strong>wp_list_categories(&#8217;exclude=1,26,33,31,30&amp;title_li=&#8217;);</strong></p>
<p><strong><span style="font-weight: normal;">You can replace the numbers between &#8216;exclude&#8217; and &#8216;&amp;&#8217; with the category ids you want to exclude.</span></strong></p>
<h3>Removing the date display from the lead/sticky post</h3>
<p>Considering the post that is featured at the top of all the others in the Mimbo theme is not necessarily the latest, I did not see the point of having its date visible.  This was easily achieved by removing the code displaying the date from the index.php template file.  Removing the  <strong>the_time(&#8217;n/d/y&#8217;);</strong> tag before the <strong>the_excerpt();</strong> in the lead sticky post section will achieve this result.</p>
<h3>Conclusion</h3>
<p>And that’s it.  All other changes were made using the child theme.  I probably will also add a carousel as well as footer widgets to the website and will publish details about those changes to this post when I do.  Please subscribe to my posts by RSS or email to get the latest updates.</p>
<p>Continuing the series, read about the <a href="http://sidekickblog.com/modifying-the-mimbo-theme-child-theme-tweaks-part-1-275.htm" target="_self">changes I made to the Mimbo theme using a child theme</a>.  </p>
<p>Please let me know if any of the instructions above are not clear.  I would love to know the results you are able to achieve.</p>
<p>If you found the above information helpful, please spread the word by digging(or stumbling and twittering) this post.  You can also add it to any other network by using the button below.</p>
<p align="left"><a class="tt" href="http://twitter.com/home/?status=Modifying+the+Mimbo+theme%3A+Parent+theme+modifications+www.bit.ly/HNaA" title="Post to Twitter"><img class="nothumb" src="http://sidekickblog.com/wordpress/wp-content/plugins/tweet-this/icons/tt-twitter-big2.png" alt="Post to Twitter" /></a></p>

<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://sidekickblog.com/modifying-the-mimbo-theme-parent-theme-modifications-242.htm/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
	</channel>
</rss>

