Tag: themes
Howto: Add footer widgets to the Mimbo theme
by Kunal Jain on Jun.12, 2009, under design
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.
You will have to edit 3 files in your theme:
Functions.php
In functions.php, add the following code under the existing widget code:
if ( function_exists(’register_sidebar’) )
register_sidebar(array(
‘name’ => ‘Mimbo Footerbar1′,
‘before_widget’ => ‘<div class=”clearfloat”>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<h3 class=”widgettitle”>’,
‘after_title’ => ‘</h3>’,
));
if ( function_exists(’register_sidebar’) )
register_sidebar(array(
‘name’ => ‘Mimbo Footerbar2′,
‘before_widget’ => ‘<div class=”clearfloat”>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<h3 class=”widgettitle”>’,
‘after_title’ => ‘</h3>’,
));
if ( function_exists(’register_sidebar’) )
register_sidebar(array(
‘name’ => ‘Mimbo Footerbar3′,
‘before_widget’ => ‘<div class=”clearfloat”>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<h3 class=”widgettitle”>’,
‘after_title’ => ‘</h3>’,
));
Footer.php
In the footer.php file, add the following code right under the footer div definition:
Style.css
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.
#footerbar { display:block; clear:both; margin-top:-10px; list-style-type: none; list-style-image: none; margin-bottom:15px; } #footerbar ul { padding-left: 15px; } #footerbar h3 { color:#dadada; font-family: 'Tempus Sans ITC','Bradley Hand ITC','Comic Sans MS','Zapf-Chancery', cursive; font-size: 18px; letter-spacing:0.15em; border:none; margin:0px; } #footerbar h3.widgettitle { color:#dadada; border:none; } #footerbar a { display:block; } #footerbar1 { float: left; margin-right:10px; } #footerbar2 { float: left; } #footerbar3 { float: right; margin-left:5px; } #footerbar1, #footerbar2, #footerbar3 { width:32%; }
Mimbo Theme: Child theme tweaks part 2
by Kunal Jain on Apr.24, 2009, under design
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 color
- The category bar link hover color
- The hover effect of the lead story background
- The default link hover colors (continue reading…)
How to modify the Mimbo 3.0 theme
by Kunal Jain on Apr.23, 2009, under design
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 chose to go with the Mimbo 3.0 theme and this is why I recommend using child themes to make design tweaks to your Wordpress blog.
Making parent theme modifications: 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.
Modifications using the child theme: This is the first part in the series of posts where I show what modifications can be made using a child theme. Part 2 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
Please subsribe to my RSS feed 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.
Modifying the Mimbo theme: Parent theme modifications
by Kunal Jain on Apr.15, 2009, under design
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 before but have never delved into it before.
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
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: (continue reading…)
Advantages of working with Wordpress child themes
by Kunal Jain on Apr.14, 2009, under blogs
In my previous post, I mentioned that while switching Recipe Mobile to the Mimbo 3.0 theme, I will also implement a child theme right from the beginning. This process has been going well and I have already realized many of the benefits of using child themes. (continue reading…)
Recipe Mobile now uses the Mimbo 3.0 theme
by Kunal Jain on Apr.13, 2009, under blogs
The decision has been made! The new Recipe Mobile blog will be powered by the Mimbo 3.0 theme. These are the reasons: (continue reading…)
Changing the Wordpress theme used by Recipe Mobile
by Kunal Jain on Apr.08, 2009, under blogs
I have reached the limit of the Cutting Board Wordpress theme that we launched Recipe Mobile with. It was a good theme to start with as it was my first experience with Wordpress and the theme came customized to use on food and recipe websites. However, the theme seemed to have issues with Internet Explorer right from the start and these issues were only compounded as I continued to customize it and add plugins. The final straw was when the category pages started going out of whack when viewed in IE or Chrome. There also does not seem to be any forum, documentation or support to help solve problems with this particular theme. (continue reading…)






