<?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>Mip Design themes &#187; Freebies</title>
	<atom:link href="http://mipdesign.com/category/freebies/feed/" rel="self" type="application/rss+xml" />
	<link>http://mipdesign.com</link>
	<description>Site Templates &#38; Wordpress Themes</description>
	<lastBuildDate>Mon, 24 May 2010 08:33:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Inspiredblog: How to implement filmstrip navigation from FancyTheme</title>
		<link>http://mipdesign.com/2009/10/28/inspiredblog-how-to-implement-filmstrip-navigation-from-fancytheme/</link>
		<comments>http://mipdesign.com/2009/10/28/inspiredblog-how-to-implement-filmstrip-navigation-from-fancytheme/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 14:35:36 +0000</pubDate>
		<dc:creator>Mip</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WP templates]]></category>

		<guid isPermaLink="false">http://mipdesign.com/?p=600</guid>
		<description><![CDATA[&#8220;I would really appreciate your suggestion of a tutorial, how to include the gallery of your Fancy Theme’s starting page to the starting page of Inspired Blog. I guess, this [...]


Related posts:<ol><li><a href='http://mipdesign.com/2009/09/29/fancytheme-v3-1-changelog/' rel='bookmark' title='Permanent Link: ChangeLog &#8211; FancyTheme v3.1'>ChangeLog &#8211; FancyTheme v3.1</a> <small>This update fixes the problem with other plugins that uses...</small></li><li><a href='http://mipdesign.com/2009/02/10/retro-theme-tutorials-part-i/' rel='bookmark' title='Permanent Link: Retro theme tutorials (part I): How to position the navigation menu below the header image?'>Retro theme tutorials (part I): How to position the navigation menu below the header image?</a> <small>TealGray Retro Theme is our most succesfull wordpress template so...</small></li><li><a href='http://mipdesign.com/2009/10/09/inspiredblog-how-to-disable-style-switchers/' rel='bookmark' title='Permanent Link: Inspiredblog: How to disable style switchers and select your default color?'>Inspiredblog: How to disable style switchers and select your default color?</a> <small>My latest theme Inspiredblog, has a pretty cool feature called...</small></li></ol>

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><em>&#8220;I would really appreciate your suggestion of a tutorial, how to include the gallery of your <a href="http://wptheme3.mipdesign.com/" target="_blank"><strong>Fancy Theme’s starting page</strong></a> to the starting page of Inspired Blog. </em>I guess, this would be interesting to others, too.. <em>&#8220;</em> said <strong>Colorit</strong>.</p></blockquote>
<p>Well, it took me a little while, but here is a tutorial how to do it.</p>
<h3>1. Add new options to administration</h3>
<p>Open &#8220;<strong>admin-options.php</strong>&#8221; file located in &#8220;<strong>functions</strong>&#8221; folder and insert (paste) the following code at line 46:</p>
<pre name="code" class="php">

array(	&quot;name&quot; =&gt; &quot;Filmstrip navigation&quot;,
&quot;type&quot; =&gt; &quot;heading&quot;,
&quot;desc&quot; =&gt; &quot;Settings for home post animation&quot;),

array(	&quot;name&quot; =&gt; &quot;Post/page Highlight IDs&quot;,
&quot;desc&quot; =&gt; &quot;Please enter ID of post(s) you want to display on homepage and separate them by commas&quot;,
&quot;id&quot; =&gt; $shortname.&quot;_hl_ID&quot;,
&quot;std&quot; =&gt; &quot;&quot;,
&quot;type&quot; =&gt; &quot;text&quot;),

array(	&quot;name&quot; =&gt; &quot;Highlight overlay color&quot;,
&quot;desc&quot; =&gt; &quot;Please enter color of overlay panel&quot;,
&quot;id&quot; =&gt; $shortname.&quot;_hl_overlay&quot;,
&quot;std&quot; =&gt; &quot;&quot;,
&quot;type&quot; =&gt; &quot;text&quot;),

array(	&quot;name&quot; =&gt; &quot;Highlight opacity&quot;,
&quot;desc&quot; =&gt; &quot;Please enter opacity overlay panel (Example: 0.6, 0.3 ...)&quot;,
&quot;id&quot; =&gt; $shortname.&quot;_hl_opacity&quot;,
&quot;std&quot; =&gt; &quot;&quot;,
&quot;type&quot; =&gt; &quot;text&quot;),

array(	&quot;name&quot; =&gt; &quot;Filmstrip Thumbnail width&quot;,
&quot;desc&quot; =&gt; &quot;Please enter desired thumbnail width&quot;,
&quot;id&quot; =&gt; $shortname.&quot;_h1_thumb_width&quot;,
&quot;std&quot; =&gt; &quot;&quot;,
&quot;type&quot; =&gt; &quot;text&quot;),

array(	&quot;name&quot; =&gt; &quot;Filmstrip Thumbnail height&quot;,
&quot;desc&quot; =&gt; &quot;Please enter desired thumbnail height&quot;,
&quot;id&quot; =&gt; $shortname.&quot;_h1_thumb_height&quot;,
&quot;std&quot; =&gt; &quot;&quot;,
&quot;type&quot; =&gt; &quot;text&quot;),
</pre>
<h3>2. Copy all javascript files</h3>
<p>Just <strong><a href="http://mipdesign.com/wp-content/uploads/2009/10/js_files.zip">download this zip file</a></strong> and extract it to themes &#8220;js&#8221; folder.</p>
<h3>3. Include javascript files</h3>
<p>Open &#8220;<strong>header.php</strong>&#8221; file and <strong>replace </strong>old jQuery easing plugin at line 43:</p>
<pre name="code" class="html">

&lt;script src=&quot;&lt;?php bloginfo(&#039;template_directory&#039;); ?&gt;/js/jquery.easing.min.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
</pre>
<p>with the following code:</p>
<pre name="code" class="html">

&lt;script src=&quot;&lt;?php bloginfo(&#039;template_directory&#039;); ?&gt;/js/jquery.easing.1.3.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
</pre>
<p>and <strong>add this two lines</strong> as last called javascript functions:</p>
<pre name="code" class="html">

&lt;script src=&quot;&lt;?php bloginfo(&#039;template_directory&#039;); ?&gt;/js/jquery.galleryview-1.1.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;&lt;?php bloginfo(&#039;template_directory&#039;); ?&gt;/js/jquery.timers-1.1.2.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
</pre>
<h3>4. Set new easing effect for LavaLamp menu</h3>
<p>New easing plugin has changed animation names so we need to change line 56:</p>
<pre name="code" class="javascript">

jQuery(&quot;#nav&quot;).lavaLamp({ fx: &quot;backout&quot;, speed: 700 });
</pre>
<p>to:</p>
<pre name="code" class="javascript">

jQuery(&quot;#nav&quot;).lavaLamp({ fx: &quot;easeOutBack&quot;, speed: 700 });
</pre>
<h3>5. Create filmstrip navigation file</h3>
<p>Create new <strong>blank </strong>file &#8220;<strong>filmstrip_navigation.php</strong>&#8221; in themes root directory and paste the following code:</p>
<pre name="code" class="php">

&lt;script type=&quot;text/javascript&quot;&gt;
jQuery(document).ready(function($){
$(&#039;#photos&#039;).galleryView({
panel_width: 930,
panel_height: 275,
overlay_width: 285,
overlay_opacity: &lt;?php echo get_option(&#039;miptheme_hl_opacity&#039;);?&gt;,
overlay_position: &#039;top&#039;,
overlay_color: &#039;&lt;?php echo get_option(&#039;miptheme_hl_overlay&#039;);?&gt;&#039;,
overlay_text_color: &#039;#fff&#039;,
caption_text_color: &#039;#dedfdf&#039;,
background_color: &#039;#444444&#039;,
border: &#039;none&#039;,
nav_theme: &#039;light&#039;,
frame_width: &lt;?php echo get_option(&#039;miptheme_h1_thumb_width&#039;);?&gt;,
frame_height: &lt;?php echo get_option(&#039;miptheme_h1_thumb_height&#039;);?&gt;,
easing: &#039;easeInOutQuad&#039;,
pause_on_hover: true
});
});
&lt;/script&gt;

&lt;div id=&quot;head-highlight&quot; class=&quot;box&quot;&gt;
&lt;div class=&quot;head-highlight-inner clearfix&quot;&gt;

&lt;div id=&quot;photos&quot; class=&quot;galleryview&quot;&gt;

&lt;?php
global $post;
$nav = &#039;&#039;;
$my_query = get_posts(&#039;include=&#039;.get_option(&#039;miptheme_hl_ID&#039;).&#039;&#039;);
foreach($my_query as $post) :
?&gt;
&lt;div class=&quot;panel&quot;&gt;
&lt;?php
if ( get_post_meta($post-&gt;ID,&#039;thumb&#039;, true) ) {
?&gt;
&lt;img src=&quot;&lt;?php echo bloginfo(&#039;template_url&#039;); ?&gt;/thumb.php?src=&lt;?php echo get_post_meta($post-&gt;ID, &quot;thumb&quot;, $single = true); ?&gt;&amp;amp;amp;amp;amp;amp;h=275&amp;amp;amp;amp;amp;amp;w=928&amp;amp;amp;amp;amp;amp;zc=1&amp;amp;amp;amp;amp;amp;q=80&quot; alt=&quot;&lt;?php the_title(); ?&gt;&quot; /&gt;
&lt;?php
}
?&gt;
&lt;div class=&quot;panel-overlay&quot;&gt;
&lt;h2&gt;&lt;a title=&quot;Permanent Link to &lt;?php the_title(); ?&gt;&quot; href=&quot;&lt;?php the_permalink(); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;&lt;?php echo ShortenText( $post-&gt;post_content, 250 ); ?&gt;&lt;/p&gt;
&lt;a title=&quot;Permanent Link to &lt;?php the_title(); ?&gt;&quot; class=&quot;detail&quot; href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;more detail&lt;/a&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;?php
$nav .= &#039;&lt;li&gt;&lt;img src=&quot;&#039;. get_bloginfo(&#039;template_url&#039;) .&#039;/thumb.php?src=&#039;. get_post_meta($post-&gt;ID, &quot;thumb&quot;, $single = true) .&#039;&amp;amp;amp;amp;amp;amp;h=&#039;. get_option(&#039;miptheme_h1_thumb_height&#039;) .&#039;&amp;amp;amp;amp;amp;amp;w=&#039;. get_option(&#039;miptheme_h1_thumb_width&#039;) .&#039;&amp;amp;amp;amp;amp;amp;zc=1&amp;amp;amp;amp;amp;amp;q=80&quot; alt=&quot;&#039;. $post-&gt;post_title .&#039;&quot; /&gt;&lt;/li&gt;&#039;;
endforeach;
?&gt;
&lt;ul class=&quot;filmstrip&quot;&gt;
&lt;?php echo $nav; ?&gt;
&lt;/ul&gt;
&lt;/div&gt;

&lt;/div&gt;&lt;!-- end head-highlight-inner --&gt;
&lt;/div&gt;&lt;!-- end head-highlight --&gt;
</pre>
<h3>6. Include filmstrip navigation on homepage</h3>
<p>Open &#8220;<strong>index.php</strong>&#8221; file and insert this code at line 12:</p>
<pre name="code" class="php">

&lt;?php include (&#039;filmstrip_navigation.php&#039;); ?&gt;
</pre>
<h3>7. Let&#8217;s style the navigation</h3>
<p>Open &#8220;<strong>style.css</strong>&#8221; file and just insert the following code:</p>
<pre name="code" class="css">

/* Highlight - Main
------------------------------------------------------*/
#head-highlight
{
padding: 15px 15px 2px 15px;
margin-bottom: 15px;
font-size: 1.1em;
color: #dedfdf;
background-color: #444;
}

#head-highlight .panel img { border: 1px solid #999; }

#head-highlight h2
{
font: normal 1.8em/120% Georgia, Times, serif;
color: #fff;
margin-bottom: 10px;
}

#head-highlight h2 a
{
color: #fff;
}

#head-highlight p
{
color: #dedfdf;
}

#head-highlight a.detail
{
display: block;
font: bold 1.0em/140% Arial, Tahoma, sans-serif;
color: #fff;
margin-bottom: 5px;
background: url(&quot;images/bullet_1.png&quot;) no-repeat 0% 80%;
padding-left: 18px;
}
</pre>
<h3>8. Set up your navigation</h3>
<p>Go to wordpress administration and under Appearance select &#8220;Theme Options&#8221;. You will se new section here called &#8220;Filmstrip navigation&#8221;. You have to <strong>populate all the fields</strong> and click &#8220;Update&#8221; at the end of page. Here is the example how to insert proper values:</p>
<h3>Preview</h3>
<p>You can <strong><a href="http://wptheme5.mipdesign.com/?page_id=240" target="_blank">preview live demo here</a></strong>.</p>


<p>Related posts:<ol><li><a href='http://mipdesign.com/2009/09/29/fancytheme-v3-1-changelog/' rel='bookmark' title='Permanent Link: ChangeLog &#8211; FancyTheme v3.1'>ChangeLog &#8211; FancyTheme v3.1</a> <small>This update fixes the problem with other plugins that uses...</small></li><li><a href='http://mipdesign.com/2009/02/10/retro-theme-tutorials-part-i/' rel='bookmark' title='Permanent Link: Retro theme tutorials (part I): How to position the navigation menu below the header image?'>Retro theme tutorials (part I): How to position the navigation menu below the header image?</a> <small>TealGray Retro Theme is our most succesfull wordpress template so...</small></li><li><a href='http://mipdesign.com/2009/10/09/inspiredblog-how-to-disable-style-switchers/' rel='bookmark' title='Permanent Link: Inspiredblog: How to disable style switchers and select your default color?'>Inspiredblog: How to disable style switchers and select your default color?</a> <small>My latest theme Inspiredblog, has a pretty cool feature called...</small></li></ol></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://mipdesign.com/2009/10/28/inspiredblog-how-to-implement-filmstrip-navigation-from-fancytheme/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Retro TUT: Update on rounded corners</title>
		<link>http://mipdesign.com/2009/03/20/retro-tut-part-iv/</link>
		<comments>http://mipdesign.com/2009/03/20/retro-tut-part-iv/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 14:03:43 +0000</pubDate>
		<dc:creator>Mip</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Site templates]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://mipdesign.com/?p=311</guid>
		<description><![CDATA[In my first Retro theme tutorial I covered &#8220;How to position the navigation menu below the header image&#8220;. The result of this tutorial was not perfect. Header image was without [...]


Related posts:<ol><li><a href='http://mipdesign.com/2009/02/10/retro-theme-tutorials-part-i/' rel='bookmark' title='Permanent Link: Retro theme tutorials (part I): How to position the navigation menu below the header image?'>Retro theme tutorials (part I): How to position the navigation menu below the header image?</a> <small>TealGray Retro Theme is our most succesfull wordpress template so...</small></li><li><a href='http://mipdesign.com/2009/10/28/inspiredblog-how-to-implement-filmstrip-navigation-from-fancytheme/' rel='bookmark' title='Permanent Link: Inspiredblog: How to implement filmstrip navigation from FancyTheme'>Inspiredblog: How to implement filmstrip navigation from FancyTheme</a> <small>&#8220;I would really appreciate your suggestion of a tutorial, how...</small></li><li><a href='http://mipdesign.com/2009/10/13/inspiredblog-how-to-set-up-a-simple-contact-form-using-cf-7/' rel='bookmark' title='Permanent Link: Inspiredblog: How to set up a simple contact form using Contact Form 7 plugin'>Inspiredblog: How to set up a simple contact form using Contact Form 7 plugin</a> <small>Most of us, are using some kind of wordpress plug-ins...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>In my <a href="/2009/02/10/retro-theme-tutorials-part-i"><strong>first Retro theme tutorial</strong></a> I covered &#8220;<em>How to position the navigation menu below the header image</em>&#8220;. The result of this tutorial was not perfect. Header image was without rounded corners on top. So, I left you to play with it.</p>
<h3>Let&#8217;s finish the job</h3>
<p>Open &#8216;<strong>index.php</strong>&#8216; file and on top you will see:</p>
<pre name="code" class="html">

...
&lt;div id=&quot;page-content&quot; class=&quot;clearfix&quot;&gt;
&lt;?php include (&#039;headimage.php&#039;); ?&gt;
...
</pre>
<p><strong>Replace the lines</strong> so the code looks like this:</p>
<pre name="code" class="html">

...
&lt;?php include (&#039;headimage.php&#039;); ?&gt;
&lt;div id=&quot;page-content&quot; class=&quot;clearfix&quot;&gt;
...
</pre>
<p>Now, repeat this step for pages: &#8216;<strong>single.php</strong>&#8216;, &#8216;<strong>page.php</strong>&#8216; and &#8216;<strong>search.php</strong>&#8216;.</p>
<h3>Add a little style</h3>
<p>Replace styles in &#8220;<strong>style.css</strong>&#8221; file with:</p>
<pre name="code" class="css">

#page-navigation
{
background: url(&quot;images/bg_page_content.png&quot;) repeat-y 0% 0%;
padding: 0px 0px 0px 20px;
}

#content-head
{
background: url(&quot;images/bg_page_navigation.png&quot;) no-repeat 0% 0%;
padding: 20px 10px 0px 10px;
height: 240px; /* insert height of your pictures */
}
</pre>
<h3>Finally</h3>
<p>The origibal &#8216;bg_page_navigation.png&#8217; file was only <em>60px </em>in height which is insufficient for our task. So, you have to replace it with a new one.</p>
<p><a class="zip" href="/wp-content/uploads/2009/03/bg_page_navigation.zip" target="_self">Download new  &#8216;bg_page_navigation.png&#8217; file</a></p>


<p>Related posts:<ol><li><a href='http://mipdesign.com/2009/02/10/retro-theme-tutorials-part-i/' rel='bookmark' title='Permanent Link: Retro theme tutorials (part I): How to position the navigation menu below the header image?'>Retro theme tutorials (part I): How to position the navigation menu below the header image?</a> <small>TealGray Retro Theme is our most succesfull wordpress template so...</small></li><li><a href='http://mipdesign.com/2009/10/28/inspiredblog-how-to-implement-filmstrip-navigation-from-fancytheme/' rel='bookmark' title='Permanent Link: Inspiredblog: How to implement filmstrip navigation from FancyTheme'>Inspiredblog: How to implement filmstrip navigation from FancyTheme</a> <small>&#8220;I would really appreciate your suggestion of a tutorial, how...</small></li><li><a href='http://mipdesign.com/2009/10/13/inspiredblog-how-to-set-up-a-simple-contact-form-using-cf-7/' rel='bookmark' title='Permanent Link: Inspiredblog: How to set up a simple contact form using Contact Form 7 plugin'>Inspiredblog: How to set up a simple contact form using Contact Form 7 plugin</a> <small>Most of us, are using some kind of wordpress plug-ins...</small></li></ol></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://mipdesign.com/2009/03/20/retro-tut-part-iv/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Free stuff: TimThumb add-on for our Book and Retro wordpress themes</title>
		<link>http://mipdesign.com/2009/02/24/free-stuff-timthumb-addon-for-our-wp-themes/</link>
		<comments>http://mipdesign.com/2009/02/24/free-stuff-timthumb-addon-for-our-wp-themes/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 10:39:53 +0000</pubDate>
		<dc:creator>Mip</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[WP templates]]></category>

		<guid isPermaLink="false">http://mipdesign.com/?p=145</guid>
		<description><![CDATA[TimThumb is a small php script created by Darren Hoyt for custom cropping, zooming and resizing web images (jpg, png, gif). It was first created for Mimbo Pro but since [...]


Related posts:<ol><li><a href='http://mipdesign.com/our-themes/wordpress-templates/a-classy-theme/' rel='bookmark' title='Permanent Link: A Classy Theme'>A Classy Theme</a> <small>A great and classy WordPress theme special for web portals,...</small></li><li><a href='http://mipdesign.com/our-themes/wordpress-templates/fancy-theme/' rel='bookmark' title='Permanent Link: Fancy Theme'>Fancy Theme</a> <small>A powerful WordPress theme special for online blogging and business/personal...</small></li><li><a href='http://mipdesign.com/2009/04/08/fancy-theme-v20/' rel='bookmark' title='Permanent Link: Fancy Theme v2.0'>Fancy Theme v2.0</a> <small>This is first update for my latest wordpress theme and...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://code.google.com/p/timthumb/" target="_blank">TimThumb</a> </strong>is a small php script created by <a href="http://www.darrenhoyt.com" target="_blank">Darren Hoyt</a> for custom cropping, zooming and resizing web images (jpg, png, gif). It was first created for <a href="http://www.darrenhoyt.com/2008/03/12/mimbo-pro-magazine-theme-released/">Mimbo Pro</a> but since last April it is available as an open-source project! It’s already being used on lot&#8217;s of projects so I have decided to integrate it into my wordpress themes.</p>
<p>A lot of you have problems with thumbnail images on blog pages because of html image tags that have to be inserted in custom fields. This script will put a smile on your face.</p>
<h3>What is the difference?</h3>
<p>A pictures says more than 1000 words:</p>
<p><img class="alignnone size-full wp-image-159" title="timthumb_old" src="http://mipdesign.com/wp-content/uploads/2009/02/timthumb_old.gif" alt="timthumb_old" width="519" height="105" /></p>
<p><img class="alignnone size-full wp-image-160" title="timthumb_new" src="http://mipdesign.com/wp-content/uploads/2009/02/timthumb_new.gif" alt="timthumb_new" width="519" height="105" /></p>
<h3>How do I set thumnail size of images?</h3>
<p>I added a custom settings page under &#8220;Appearance -&gt; Theme Options&#8221;:</p>
<p><img class="alignnone size-full wp-image-155" title="timthumb_settings" src="http://mipdesign.com/wp-content/uploads/2009/02/timthumb_settings.gif" alt="timthumb_settings" width="520" height="209" /></p>
<p>Just be careful with these values. You should always upload images <strong>larger than entered</strong> values.</p>
<h3>How do I install this addon?</h3>
<p>I prepared ZIP document that contains 4 files you need to copy to your <a href="/our-themes/wordpress-templates/book-template" target="_self"><strong>Book Template</strong></a> or <a href="http://mipdesign.com/our-themes/wordpress-templates/tealgray-retro-theme" target="_self"><strong>Retro v2.0</strong></a> theme. Two of those files are new but two of them need to replace older versions.<br />
<strong>I suggest you backup all your files before installing this addon.</strong></p>
<p><a class="zip" href="http://mipdesign.com/wp-content/uploads/2009/02/retrotheme_thumb_addon.zip">TealGray Retro Theme v2.0 TimThumb addon</a><br />
<a class="zip" href="http://mipdesign.com/wp-content/uploads/2009/02/booktemplate_thumb_addon.zip">Book Template TimThumb addon</a></p>
<h4>Some important things to note:</h4>
<ul>
<li>TimThumb requires <a href="http://www.libgd.org/Main_Page" target="blank">the GD library</a>, which is available on any host sever with PHP 4.3+ installed.</li>
<li>Once installed and in-use, TimThumb will <strong>automatically</strong> create a /cache/ subfolder with proper write-permissions. If your host server doesn’t allow this by default, be sure to manually change the /cache/ folder permissions to 777.</li>
<li>In addition, make sure the folder which <em>contains</em> TimThumb is set to 777.</li>
</ul>


<p>Related posts:<ol><li><a href='http://mipdesign.com/our-themes/wordpress-templates/a-classy-theme/' rel='bookmark' title='Permanent Link: A Classy Theme'>A Classy Theme</a> <small>A great and classy WordPress theme special for web portals,...</small></li><li><a href='http://mipdesign.com/our-themes/wordpress-templates/fancy-theme/' rel='bookmark' title='Permanent Link: Fancy Theme'>Fancy Theme</a> <small>A powerful WordPress theme special for online blogging and business/personal...</small></li><li><a href='http://mipdesign.com/2009/04/08/fancy-theme-v20/' rel='bookmark' title='Permanent Link: Fancy Theme v2.0'>Fancy Theme v2.0</a> <small>This is first update for my latest wordpress theme and...</small></li></ol></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://mipdesign.com/2009/02/24/free-stuff-timthumb-addon-for-our-wp-themes/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>
