<?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>Cozmoslabs &#187; Theme Design</title>
	<atom:link href="http://www.cozmoslabs.com/category/theme-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cozmoslabs.com</link>
	<description>Web design and development experiment.</description>
	<lastBuildDate>Wed, 08 Feb 2012 23:05:21 +0000</lastBuildDate>
	<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>WordPress Developer Tools</title>
		<link>http://www.cozmoslabs.com/2664-wordpress-developer-tools/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-developer-tools</link>
		<comments>http://www.cozmoslabs.com/2664-wordpress-developer-tools/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 10:58:43 +0000</pubDate>
		<dc:creator>Cristian</dc:creator>
				<category><![CDATA[Theme Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[custom field]]></category>
		<category><![CDATA[custom meta box]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress development tools]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=2664</guid>
		<description><![CDATA[During the last 3 years while providing web-design and development solutions to our clients over at Reflection Media, we&#8217;re tried our best to optimize our processes and development time by reusing code, creating a database of often used code snipets and constructing generalist plugins when possible. While this didn&#8217;t always work out as expected, we&#8217;ve [...]
Related posts:<ol>
<li><a href='http://www.cozmoslabs.com/500-street-wordpress-theme/' rel='bookmark' title='Street WordPress Theme'>Street WordPress Theme</a></li>
<li><a href='http://www.cozmoslabs.com/1130-the-new-smarter-and-wordpress-3-0/' rel='bookmark' title='The new Smarter and WordPress 3.0'>The new Smarter and WordPress 3.0</a></li>
<li><a href='http://www.cozmoslabs.com/1667-wordpress-automatic-updates-based-on-folder-name-is-that-a-problem/' rel='bookmark' title='WordPress Automatic Updates Based on Folder Name. Is That a Problem?'>WordPress Automatic Updates Based on Folder Name. Is That a Problem?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><div id="attachment_2691" class="wp-caption alignright" style="width: 310px"><img src="http://www.cozmoslabs.com/wp-content/uploads/2011/11/wordpress-developer-tools.jpg" alt="WordPress Developer Tools" title="wordpress-developer-tools" width="300" height="225" class="size-full wp-image-2691" /><p class="wp-caption-text">WordPress Developer Tools</p></div><br />
During the last 3 years while providing web-design and development solutions to our clients over at <a href="http://www.reflectionmedia.ro">Reflection Media</a>, we&#8217;re tried our best to optimize our processes and development time by reusing code, creating a database of often used code snipets and constructing generalist plugins when possible.</p>
<p>While this didn&#8217;t always work out as expected, we&#8217;ve tried to push for these goals to the best of our abilities and tried to &#8220;Do The Right Thing&#8221; as often as possible. Out of our efforts we ended up with two cool projects: <strong>BareSkin</strong> &#8211; a WordPress Starter Theme and <strong>Custom Field Creator</strong> &#8211; a easy to use class to create Meta Boxes for posts, pages and custom post types.</p>
<p>By building these <strong>WordPress Developer Tools</strong> we hope to save time and energy on our projects and create a solid base for more complex themes and plugins.</p>
<p>Both projects are in a <code>ALPHA</code> stage but stable enough to be of real use to you as well. I&#8217;ve been using both of them in client projects and I&#8217;m really happy on how they turned out.</p>
<p><span id="more-2664"></span></p>
<h3>BareSkin</h3>
<p><strong>Is a HTML5 WordPress theme to jump-start the development of another full-featured theme.</strong></p>
<p>When we started developing custom themes for our clients, Thematic saved us a lot of time. We didn&#8217;t have to worry about all the things WordPress needs inside a theme and just used Child Themes to style and hooks to add custom functionality.</p>
<p>It all worked well up to a point. You see, the more custom functionality you need, more code goes inside <em>functions.php</em>. We ended up with thousands of lines of code inside <em>functions.php</em> on some of our more complex projects. Once you start unhooking existing functionality and hooking your own, you stop saving time and becomes a BIG pain in the butt to get anything working well.</p>
<p>Our first step away from this was creating our own internal framework. I didn&#8217;t like the direction Thematic has taken so I started looking elsewhere for inspiration and guidance. As it happens, <a href="http://justintadlock.com/archives/2010/08/16/frameworks-parent-child-and-grandchild-themes">Justin Tadlock</a> felt the same thing about frameworks and released <a href="http://themehybrid.com/hybrid-core">Hybrid Core</a> &#8211; a WordPress theme development framework for creating solid parent themes.</p>
<p>We used Hybrid Core and created an internal framework, kept Thematic&#8217;s awesome XHTML structure, but ended up creating our own framework with the same problems as Thematic or any framework out there: we still used hooks and filters to add functionality inside templates.</p>
<p>Somehow that felt wrong to me so after a few projects with it we ditched it and I started looking again, this time by creating a document with the requirements of the theme that fit well with our web-development process.</p>
<h4>BareSkin requirements:</h4>
<ul>
<li>NOT a theme framework. Think of it as a parent theme with limited support for hooks and filters. <strong>Modifications should be made by forking it</strong> and creating a new theme, not through Child Themes.</li>
<li>Functionality should be added through a modular system ( like <em>add_theme_support</em> )</li>
<li>The loops should be included through <em>get_template_part</em> so template files are as easy to understand as possible.</li>
<li>Limited Admin Panel &#8211; only functionality that might belong to a theme, everything else delegate to plugins.</li>
<li>When possible use conventions over configurations</li>
<li>The theme will support 3 layout structures through css includes: 2 columns right-aside, 2 columns left-aside, 3 columns content-in-the-middle similar to Thematic as well as a responsive.css file</li>
</ul>
<p>We&#8217;ve used <a href="http://wordpress.org/extend/themes/toolbox">ToolBox&#8217;s</a> HTML structure, took part of the functionality from Hybrid Core and then mashed it all together to create something really cool.</p>
<p>This is not a finished theme. That&#8217;s why for now it&#8217;s only available via GitHub and will not be submitted to the theme repository for now. Work still needs to be done to the existing CSS structure and you might find inconsistencies in the code.</p>
<div class="preview_download">
<a href="https://github.com/madalinungureanu/bareskin"><strong> &gt;&gt; DOWNLOAD / FORK BareSkin from GitHub &lt;&lt; </strong></a>
</div>
<div class="update">
<h3 style="text-align:center;">UPDATE</h3>
<p>Custom Fields Creator became WordPress Creation Kit </p>
</div>
<h3>Custom Fields Creator</h3>
<p>Custom fields have been in WordPress since a long time. They are an absolute must when it comes to custom post types or even storing extra information regarding a certain page.</p>
<p>However, the UI to manage those fields is somewhat lacking in functionality. You can only add key =&gt; value pairs. No labels, no descriptions. The cool thing is that we can create Custom Meta Boxes and save that information in custom fields.</p>
<div id="attachment_2677" class="wp-caption alignnone" style="width: 611px"><img class="size-full wp-image-2677" title="cf_ui" src="http://www.cozmoslabs.com/wp-content/uploads/2011/11/cf_ui.png" alt="" width="601" height="251" /><p class="wp-caption-text">Default Custom Field Interface.</p></div>
<p>While <a href="http://wp.smashingmagazine.com/2011/10/04/create-custom-post-meta-boxes-wordpress/">creating Meta Boxes</a> is really cool, it&#8217;s also something we can take a bit further and abstracted a metabox class so you could create them with a few lines of code.</p>
<p><strong>Taking the idea a bit further, what we really needed was repeater fields with our meta boxes.</strong></p>
<p>There are a few cool plugins that allows you to do just that (ACF and Magic Fields 2 come to mind) but we needed something that was easy to embed in custom client plugins where the client didn&#8217;t need access to the structure of the fields, particularly since we&#8217;re using standard WordPress functions to output the information in a page template for the front-end.</p>
<div id="attachment_2682" class="wp-caption alignnone" style="width: 610px"><a href="http://www.cozmoslabs.com/wp-content/uploads/2011/11/cfc-ui.jpg"><img class="size-full wp-image-2682 " title="cfc-ui" src="http://www.cozmoslabs.com/wp-content/uploads/2011/11/cfc-ui.jpg" alt="" width="600"/></a><p class="wp-caption-text">Custom Fields Creator UI to create the testimonials on wpMail.me</p></div>
<h4>Here&#8217;s what Custom Fields Creator dose:</h4>
<ul>
<li><strong>Easy to configure. </strong>You just need to setup two arrays (more info on the GitHub readme file)</li>
<li><strong>Support for Repeater Fields Metabox. </strong>This is the main reason we built it. Let me give you an example. For a particular client we needed to create a &#8220;The Team&#8221; page. Each team member has a name, title, email address and phone number. Initially all information was added in the Visual Editor by us, but when the client updated that information he easily broke the HTML and the formatting was gone together with the sidebars since he didn&#8217;t close a tag <img src='http://www.cozmoslabs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Having the information nicely separated in input fields and listing it on the front-end using <a href="http://codex.wordpress.org/Function_Reference/get_post_meta">get_post_meta</a> made it easy for the client to update his information and we didn&#8217;t have to it for them.</li>
<li>Drag and Drop to sort the Repeater Fields.</li>
<li>Easy to create custom Meta Boxes with multiple fields each (let&#8217;s say you need a project extra information like: budget, timeframe  and team members)</li>
<li>Support for all input fields (WYSIWYG is coming soon)</li>
<li>Image / File upload supported via the WordPress Media Uploader (at this point the files aren&#8217;t attached to the post and are available just in the media library but we&#8217;re thinking have to possibility  to chose if needed)</li>
<li>Possibility to target only certain page-templates (there is no point in having &#8220;the team&#8221; metabox shown on the &#8220;Our Clients&#8221; page now is it? ), target certain custom post types and even unique ID&#8217;s.</li>
</ul>
<p>There are other things on the list for it, proper documentation is one (you&#8217;ll find a readme file on github for now), WYSIWYG, validation and tweaks to the UI. At this point is just important to let people know about it and hopefully someone will find it useful.</p>
<div class="preview_download">
<a href="https://github.com/madalinungureanu/wordpress-creation-kit-api"><strong> >> DOWNLOAD / FORK Custom Fields Creator from GitHub << </strong></a>
</div>
<h3>Future Plans</h3>
<p>I think at this point creating proper documentation is a priority for both projects. For BareSkin we need to finalize the CSS so it&#8217;s easy to build upon it, as for Custom Fields Creator tweaking it&#8217;s UI is something I want to do most. I think the UI and ease of use will be THE big feature for both projects and not adding to much extra functionality. They don&#8217;t have to do everything, just need to give you a head-start and let you focus on the fun stuff.</p>
<p>I haven&#8217;t coded any of them, my colleague and good friend <strong>Madalin Ungureanu</strong> did, but I&#8217;ve created the initial requirements for both, did a fair amount of testing and currently working on improving them.</p>
<p>I believe it&#8217;s very important to have solid <strong>WordPress Developer Tools </strong>that allows you to build other cool stuff easily without having to do a lot of copy-pasting between projects. Hopefully they will be of help to other developers as well.</p>
<p><strong>If you do end-up working with any of them I would love to hear about it in the comments.</strong></p>
<p>Related posts:<ol>
<li><a href='http://www.cozmoslabs.com/500-street-wordpress-theme/' rel='bookmark' title='Street WordPress Theme'>Street WordPress Theme</a></li>
<li><a href='http://www.cozmoslabs.com/1130-the-new-smarter-and-wordpress-3-0/' rel='bookmark' title='The new Smarter and WordPress 3.0'>The new Smarter and WordPress 3.0</a></li>
<li><a href='http://www.cozmoslabs.com/1667-wordpress-automatic-updates-based-on-folder-name-is-that-a-problem/' rel='bookmark' title='WordPress Automatic Updates Based on Folder Name. Is That a Problem?'>WordPress Automatic Updates Based on Folder Name. Is That a Problem?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/2664-wordpress-developer-tools/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>WordPress Automatic Updates Based on Folder Name. Is That a Problem?</title>
		<link>http://www.cozmoslabs.com/1667-wordpress-automatic-updates-based-on-folder-name-is-that-a-problem/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-automatic-updates-based-on-folder-name-is-that-a-problem</link>
		<comments>http://www.cozmoslabs.com/1667-wordpress-automatic-updates-based-on-folder-name-is-that-a-problem/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 11:47:47 +0000</pubDate>
		<dc:creator>Cristian</dc:creator>
				<category><![CDATA[plugins]]></category>
		<category><![CDATA[Theme Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[automatic update]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=1667</guid>
		<description><![CDATA[Automatic Updates are great. They are one of the best if not THE best feature WordPress has. I&#8217;ve loved it since it was introduced in 2.7 (2.5 for plugins) and it&#8217;s something that really makes my life easier. If I&#8217;m not mistaken, WordPress automatic updates for themes and plugins are based on the folder name [...]
Related posts:<ol>
<li><a href='http://www.cozmoslabs.com/403-commune-child-theme-update/' rel='bookmark' title='Commune Child Theme &#8211; Update'>Commune Child Theme &#8211; Update</a></li>
<li><a href='http://www.cozmoslabs.com/1561-profile-builder-pro-is-wordpress-registration-done-right/' rel='bookmark' title='Profile Builder Pro is WordPress Registration Done Right'>Profile Builder Pro is WordPress Registration Done Right</a></li>
<li><a href='http://www.cozmoslabs.com/1246-qandapress-a-qa-platform-based-on-wordpress/' rel='bookmark' title='QandaPress, a Q&amp;A platform based on WordPress'>QandaPress, a Q&#038;A platform based on WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Automatic Updates are great. They are one of the best if not THE best feature WordPress has. I&#8217;ve loved it since it was introduced in 2.7 (2.5 for plugins) and it&#8217;s something that really makes my life easier.</p>
<p>If I&#8217;m not mistaken, WordPress automatic updates for themes and plugins are based on the folder name first and then on the name of the plugin and theme.</p>
<h3>Things aren&#8217;t perfect in the land of WordPress Updates.</h3>
<p>You see, two years ago I released a child theme for Thematic called Commune. It has over 10.000 downloads and a lot of people are using it for their blogs.</p>
<p>A month ago, another theme called Commune was approved on the WordPress.org Theme Repository. Since it had the same name as mine, it issued an automatic update.  One of the users of the Commune Child Theme saw the update and clicked it. After all, it had the same name, it came from WordPress, what could there go wrong?</p>
<p>As you probably suspected the update overwritten the Commune Child Theme and activated the WordPress.org theme. You could say the user was quite surprised and unhappy:</p>
<blockquote><p>Hi Cris &#8211; just updated Commune @ <a title="http://interactivebodywork.com" href="http://t.co/Cj6dycV" rel="nofollow" target="_blank" data-display-url="interactivebodywork.com" data-expanded-url="http://interactivebodywork.com">http://t.co/Cj6dycV</a> &amp; the format is ruined ): no menus, columns &amp; widgets gone&#8230; HELP! (<a href="http://twitter.com/#%21/humanelywild/status/90978966789300224">twitter status</a>)</p></blockquote>
<p><span id="more-1667"></span></p>
<h3>So where&#8217;s the fire?</h3>
<p>Well, there isn&#8217;t one.<strong> These things happen and life goes on.</strong> I&#8217;ve help my child theme user to reinstall my theme, she had to recreate her widget settings and that was all.<strong> So if you have my Commune theme installed please don&#8217;t update it. It&#8217;s the WRONG theme.</strong></p>
<p>Also <a href="http://twitter.com/nacin">@nacin</a> already created a <a href="http://core.trac.wordpress.org/ticket/18097">bug report</a> on the track to address this issue.</p>
<h3>What I&#8217;m hopping to achieve with this post is to raise awareness.</h3>
<p>With WordPress <strong>powering 50 Million websites</strong> and the large number of developers and theme designers something like this is bound to happen sooner or later.</p>
<p>And the same things is valid for Plugin Updates as well. Let&#8217;s say you create a custom plugin for a client, name it appropriately (no one uses this plugin name on WordPress.org either). Since this is a custom plugin you don&#8217;t bother to upload it to the repository.</p>
<p>Months later, someone comes along and creates another plugin with the same name and uploads it to WordPress.org.  You&#8217;ve guessed it! Your original plugin get&#8217;s an automatic update. Client updates the plugin and brakes it&#8217;s site.</p>
<h3>What can you do as a developer?</h3>
<p><strong>Mark Jaquith wrote about this in the past.</strong> You can setup your plugin and theme so they are excluded from the plugin updates. It&#8217;s a simple piece of code and you can learn more about it by <a href="http://markjaquith.wordpress.com/2009/12/14/excluding-your-plugin-or-theme-from-update-checks/">clicking here.</a> I&#8217;m also including that in all my child themes and custom plugins just to be on the safe side.<a href="http://markjaquith.wordpress.com/2009/12/14/excluding-your-plugin-or-theme-from-update-checks/"><br />
</a></p>
<p>The thing is that I never really thought this could ever be an issue until it happened to me. Also it&#8217;s a very obscure thing that not many people know about it. Hopefully if you&#8217;re a developer and create custom themes and plugins take this into account.</p>
<h3>No-one is to blame here really but can this be done differently?</h3>
<p>I think so. Issuing an <strong>unique identifier</strong> on which to base the automatic update shouldn&#8217;t be that hard (or is it?)</p>
<p>I&#8217;m writing about this hoping to raise awareness to this issue, not to mention the 3.3 milestone features a refresh to the update system and might even go so far as updating WordPress in the background, without your intervention (these are rumors mind you).</p>
<p>So let me know what you think in the comments.<strong> Should Automatic Updates be issued based on an unique identifier and not just the Theme/Plugin name?</strong></p>
<p>Related posts:<ol>
<li><a href='http://www.cozmoslabs.com/403-commune-child-theme-update/' rel='bookmark' title='Commune Child Theme &#8211; Update'>Commune Child Theme &#8211; Update</a></li>
<li><a href='http://www.cozmoslabs.com/1561-profile-builder-pro-is-wordpress-registration-done-right/' rel='bookmark' title='Profile Builder Pro is WordPress Registration Done Right'>Profile Builder Pro is WordPress Registration Done Right</a></li>
<li><a href='http://www.cozmoslabs.com/1246-qandapress-a-qa-platform-based-on-wordpress/' rel='bookmark' title='QandaPress, a Q&amp;A platform based on WordPress'>QandaPress, a Q&#038;A platform based on WordPress</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/1667-wordpress-automatic-updates-based-on-folder-name-is-that-a-problem/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Cozy Child Theme</title>
		<link>http://www.cozmoslabs.com/1298-cozy-child-theme/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=cozy-child-theme</link>
		<comments>http://www.cozmoslabs.com/1298-cozy-child-theme/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 14:01:30 +0000</pubDate>
		<dc:creator>Cristian</dc:creator>
				<category><![CDATA[Recomended Reading]]></category>
		<category><![CDATA[Thematic]]></category>
		<category><![CDATA[Theme Design]]></category>
		<category><![CDATA[child theme]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=1298</guid>
		<description><![CDATA[This elegant WordPress theme started as a custom project but ended up as a Child Theme for the Thematic Framework. It&#8217;s a warm design that makes you feel comfortable. In order to install it you have to download the Thematic Theme (from which this child theme inherits all of the functionality), upload both themes (Cozy [...]
Related posts:<ol>
<li><a href='http://www.cozmoslabs.com/620-early-morning-child-theme/' rel='bookmark' title='Early Morning Child Theme'>Early Morning Child Theme</a></li>
<li><a href='http://www.cozmoslabs.com/145-byty-free-child-theme-built-thematic/' rel='bookmark' title='Byty the Free Child Theme &#8211; Built on Thematic'>Byty the Free Child Theme &#8211; Built on Thematic</a></li>
<li><a href='http://www.cozmoslabs.com/164-installing-wordpress-child-themes-customizing/' rel='bookmark' title='Installing WordPress Child Themes and Customizing the Byty Theme'>Installing WordPress Child Themes and Customizing the Byty Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This elegant WordPress theme started as a custom project but ended up as a Child Theme for the Thematic Framework.</p>
<p>It&#8217;s a warm design that makes you feel comfortable. </p>
<div id="attachment_1299" class="wp-caption alignnone" style="width: 610px"><img src="http://www.cozmoslabs.com/wp-content/uploads/2011/02/cozy_theme.png" alt="" title="cozy_theme" width="600" height="326" class="size-full wp-image-1299" /><p class="wp-caption-text">Cozy Child Theme for Thematic Framework</p></div>
<p><span id="more-1298"></span></p>
<p class="info-box">
In order to install it you have to download the <a href="http://wordpress.org/extend/themes/thematic">Thematic Theme</a> (from which this child theme inherits all of the functionality), upload both themes (Cozy and Thematic) to your server in the themes folder AND THEN ACTIVATE the Cozy Theme.</p>
<div class="preview_download">
<a href="http://cozmoslabs.com/project/cozy/"><img src="http://www.cozmoslabs.com/wp-content/uploads/2009/07/preview.gif" alt="preview"/></a><a class="downloadlink dlimg" href="http://www.cozmoslabs.com/wp-content/plugins/download-monitor/download.php?id=13" title="Version 0.1 downloaded 549 times" ><img src="http://www.cozmoslabs.com/wp-content/uploads/2010/11/download.jpg" alt="Download Cozy Version 0.1" /></a>
</div>
<h3>The end of a good run</h3>
<p>This will probably be the last free child theme I&#8217;ll release for Thematic. The last couple of years have been filed with experiences I never thought possible and I&#8217;ve learned so much. However it&#8217;s time to move forward, leave Thematic behind and try a more sensible approach to theme development. I&#8217;m talking about creating Parent Themes and on top of them Child Themes and not try to solve every problem using Thematic (this is better explained by <a href="http://justintadlock.com/archives/2010/08/16/frameworks-parent-child-and-grandchild-themes">Justin Tadlock</a>) </p>
<p>This doesn&#8217;t mean I&#8217;ll stop releasing themes. On the contrary I look forward adding a couple new free designs that can be used by the community.</p>
<p>Related posts:<ol>
<li><a href='http://www.cozmoslabs.com/620-early-morning-child-theme/' rel='bookmark' title='Early Morning Child Theme'>Early Morning Child Theme</a></li>
<li><a href='http://www.cozmoslabs.com/145-byty-free-child-theme-built-thematic/' rel='bookmark' title='Byty the Free Child Theme &#8211; Built on Thematic'>Byty the Free Child Theme &#8211; Built on Thematic</a></li>
<li><a href='http://www.cozmoslabs.com/164-installing-wordpress-child-themes-customizing/' rel='bookmark' title='Installing WordPress Child Themes and Customizing the Byty Theme'>Installing WordPress Child Themes and Customizing the Byty Theme</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/1298-cozy-child-theme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The new Smarter and WordPress 3.0</title>
		<link>http://www.cozmoslabs.com/1130-the-new-smarter-and-wordpress-3-0/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-new-smarter-and-wordpress-3-0</link>
		<comments>http://www.cozmoslabs.com/1130-the-new-smarter-and-wordpress-3-0/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 13:12:52 +0000</pubDate>
		<dc:creator>Adrian</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Theme Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[color child theme]]></category>
		<category><![CDATA[custom navigation]]></category>
		<category><![CDATA[multilingual wordpress]]></category>
		<category><![CDATA[screencast]]></category>
		<category><![CDATA[smarter theme]]></category>
		<category><![CDATA[wordpress 3.0]]></category>
		<category><![CDATA[wordpress theme]]></category>
		<category><![CDATA[WPML]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=1130</guid>
		<description><![CDATA[As you all know, WordPress has made the 3.0 transition, which brings the long-awaited merge of MU and WordPress and a lot of new features to the table. Trying to keep up with the goodies we developed a new version of Smarter, which runs smooth on 3.0 and takes advantage of the new feature list. [...]
Related posts:<ol>
<li><a href='http://www.cozmoslabs.com/817-smarter-wordpress-theme/' rel='bookmark' title='Smarter WordPress Theme'>Smarter WordPress Theme</a></li>
<li><a href='http://www.cozmoslabs.com/805-smarter-theme-teaser/' rel='bookmark' title='Smarter Theme Teaser'>Smarter Theme Teaser</a></li>
<li><a href='http://www.cozmoslabs.com/1452-wpmail-me-a-concise-once-weekly-free-roundup-of-wordpress-news-and-articles/' rel='bookmark' title='wpMail.me &#8211; a concise, once weekly free roundup of WordPress news and articles'>wpMail.me &#8211; a concise, once weekly free roundup of WordPress news and articles</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong> </strong>As you all know,  WordPress has made the 3.0 transition, which brings the long-awaited  merge of MU and WordPress and a lot of new features to the table.<br />
Trying  to keep up with the goodies we developed a new version of Smarter,  which runs smooth on 3.0 and takes advantage of the new  feature list.</p>
<div id="attachment_1146" class="wp-caption alignnone" style="width: 610px"><img class="size-full wp-image-1146" title="smarter2" src="http://www.cozmoslabs.com/wp-content/uploads/2010/06/smarter2.jpg" alt="" width="600" height="370" /><p class="wp-caption-text">A Smart WordPress 3.0 Theme</p></div>
<p>As mentioned before Smarter theme was designed as a  powerful CMS for company websites. It&#8217;s a business wordpress theme,  with a SEO friendly structure.</p>
<p>This being said, here are some of the new things  that <strong>Smarter 2.0</strong> has to offer.</p>
<p>The <strong>News Items</strong> was implemented using the custom post type feature from WP 3.0. Now,  adding and editing news is simple and straight forward, leaving no room  for confusion.</p>
<p>The <strong>custom navigation menu</strong> has been set as the theme default menu, so now you will be able to insert and organize things like pages, categories, news or custom links in your theme menu.</p>
<p>Smarter  also comes with a big package of <strong>different color child themes</strong>, giving  you the option to choose the right color range for your business.</p>
<p>In case you&#8217;re aiming for a <strong>multilingual website</strong>, Smarter 2.0 has been tested and works great with WPML plugin.</p>
<p><strong>Smarter Theme Options</strong>, which let you  customize your site looks, comes with a lighter interface which includes  all the options from the previous version. So you have options like: selecting between multiple theme layouts, uploading a header image, editing the featured slider page etc.</p>
<p>To find out more about Smarter 2.0  and it&#8217;s new features check out the screencast below:</p>
<p><object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0' width='560' height='345'><param name='movie' value='http://screenr.com/Content/assets/screenr_1116090935.swf' /><param name='flashvars' value='i=81717' /><param name='allowFullScreen' value='true' /><embed src='http://screenr.com/Content/assets/screenr_1116090935.swf' flashvars='i=81717' allowFullScreen='true' width='560' height='345' pluginspage='http://www.macromedia.com/go/getflashplayer'></embed></object></p>
<h3>Pricing</h3>
<p>For 25$ you can purchase Smarter 2.0, which includes all the functionality of the old version, plus the new features mentioned before. The zip also includes the psd files and the color child themes. Being released under a GPL license, Smarter can be used on an unlimited number of websites.</p>
<div class="preview_download"><a href="http://www.cozmoslabs.com/project/smarter/"><img src="http://www.cozmoslabs.com/wp-content/uploads/2010/01/preview.gif" alt="preview" /></a><a class="ec_ejc_thkbx" onclick="javascript:return EJEJC_lc(this);" href="https://www.e-junkie.com/ecom/gb.php?c=cart&amp;i=591710&amp;cl=94691&amp;ejc=2" target="ej_ejc"><img src="http://www.cozmoslabs.com/wp-content/uploads/2010/01/buy_now.gif" border="0" alt="Add to Cart" /></a></div>
<h3> Support </h3>
<p>If you have any suggestions or questions regarding the new version of this theme, please visit our forums  (http://cozmoslabs.com/forums/).</p>
<p>Related posts:<ol>
<li><a href='http://www.cozmoslabs.com/817-smarter-wordpress-theme/' rel='bookmark' title='Smarter WordPress Theme'>Smarter WordPress Theme</a></li>
<li><a href='http://www.cozmoslabs.com/805-smarter-theme-teaser/' rel='bookmark' title='Smarter Theme Teaser'>Smarter Theme Teaser</a></li>
<li><a href='http://www.cozmoslabs.com/1452-wpmail-me-a-concise-once-weekly-free-roundup-of-wordpress-news-and-articles/' rel='bookmark' title='wpMail.me &#8211; a concise, once weekly free roundup of WordPress news and articles'>wpMail.me &#8211; a concise, once weekly free roundup of WordPress news and articles</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/1130-the-new-smarter-and-wordpress-3-0/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Charisma, Free Genesis Child Theme</title>
		<link>http://www.cozmoslabs.com/1081-charisma-free-genesis-child-theme/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=charisma-free-genesis-child-theme</link>
		<comments>http://www.cozmoslabs.com/1081-charisma-free-genesis-child-theme/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 10:37:21 +0000</pubDate>
		<dc:creator>Cristian</dc:creator>
				<category><![CDATA[Recomended Reading]]></category>
		<category><![CDATA[Theme Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Charisma]]></category>
		<category><![CDATA[child theme]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Genesis]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=1081</guid>
		<description><![CDATA[Charisma is a free Genesis child theme that will work perfectly for your WordPress personal blog. When I started designing Charisma I had in mind an elegant, simple, well structured theme which highlights the content and gives the user a pleasurable reading experience. The home page has a beautiful slider, and below it lists the [...]
Related posts:<ol>
<li><a href='http://www.cozmoslabs.com/145-byty-free-child-theme-built-thematic/' rel='bookmark' title='Byty the Free Child Theme &#8211; Built on Thematic'>Byty the Free Child Theme &#8211; Built on Thematic</a></li>
<li><a href='http://www.cozmoslabs.com/1298-cozy-child-theme/' rel='bookmark' title='Cozy Child Theme'>Cozy Child Theme</a></li>
<li><a href='http://www.cozmoslabs.com/620-early-morning-child-theme/' rel='bookmark' title='Early Morning Child Theme'>Early Morning Child Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Charisma is a <strong>free Genesis child theme</strong> that will work perfectly for your WordPress personal blog.</p>
<p>When I started designing Charisma I had in mind an elegant, simple, well structured theme which highlights the content and gives the user a pleasurable reading experience.</p>
<div id="attachment_1112" class="wp-caption alignnone" style="width: 610px"><img class="size-full wp-image-1112" title="charisma" src="http://www.cozmoslabs.com/wp-content/uploads/2010/06/charisma.jpg" alt="" width="600" height="389" /><p class="wp-caption-text">Charisma, Free Genesis Child Theme</p></div>
<p><span id="more-1081"></span></p>
<p>The home page has a beautiful slider, and below it lists the most recent post titles. I created a new widget area that appears only on the homepage and you can add the default featured articles widget or featured page widget from Genesis Theme Framework.</p>
<p>So why Genesis you might ask? To be honest I wanted to experiment with frameworks other then Thematic to see how they work. I&#8217;ve used bits from Hybrid in the past and this is how I&#8217;ve tested Genesis, by building a child theme for it.</p>
<p>To be honest I was pleasantly surprised.  The code is really easy to understand, there are plenty of tutorials on the support forums, the css is straight forward and the html really let&#8217;s you create any layout without any problems. I&#8217;ve also liked the widgets Genesis comes with by default. They speed up things quite a lot.</p>
<p class="info-box">Charisma was built on top of the Genesis framework, so it inherits all it&#8217;s functionality. In order to install it you have to buy the <a href="http://www.shareasale.com/r.cfm?b=242694&#038;u=468222&#038;m=28169&#038;urllink=&#038;afftrack=">Genesis Theme</a> (this is an affiliate link), upload both themes (Charisma and Genesis) to your server in the themes folder AND THEN ACTIVATE the Charisma theme.</p>
<div class="preview_download"><a href="http://www.cozmoslabs.com/project/charisma/"><img src="http://www.cozmoslabs.com/wp-content/uploads/2009/07/preview.gif" alt="preview" /></a><a class="downloadlink dlimg" href="http://www.cozmoslabs.com/wp-content/plugins/download-monitor/download.php?id=12" title="Version 1.0 downloaded 1387 times" ><img src="http://www.cozmoslabs.com/wp-content/uploads/2010/11/download.jpg" alt="Download Charisma Version 1.0" /></a></div>
<h2>Support</h2>
<p>If you have any question regarding this theme you can always visit the Cozmoslabs forums for help (<a href="http://www.cozmoslabs.com/forums/forum/charisma">www.cozmoslabs.com/forums/forum/charisma</a>).</p>
<p>However, for questions regarding the Genesis Theme Framework please make use of the <a href="http://www.studiopress.com/support/">excellent support StudioPress</a> provides.</p>
<p>Related posts:<ol>
<li><a href='http://www.cozmoslabs.com/145-byty-free-child-theme-built-thematic/' rel='bookmark' title='Byty the Free Child Theme &#8211; Built on Thematic'>Byty the Free Child Theme &#8211; Built on Thematic</a></li>
<li><a href='http://www.cozmoslabs.com/1298-cozy-child-theme/' rel='bookmark' title='Cozy Child Theme'>Cozy Child Theme</a></li>
<li><a href='http://www.cozmoslabs.com/620-early-morning-child-theme/' rel='bookmark' title='Early Morning Child Theme'>Early Morning Child Theme</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/1081-charisma-free-genesis-child-theme/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Theme Teasers</title>
		<link>http://www.cozmoslabs.com/994-theme-teasers/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=theme-teasers</link>
		<comments>http://www.cozmoslabs.com/994-theme-teasers/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 16:36:26 +0000</pubDate>
		<dc:creator>Cristian</dc:creator>
				<category><![CDATA[Theme Design]]></category>
		<category><![CDATA[childtheme]]></category>
		<category><![CDATA[teaser]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=994</guid>
		<description><![CDATA[The last two months have been really productive. So I thought I&#8217;d share with you two of the works in progress. While still far from ready to be released, they are ready to be shown. Both will be child themes, but with a twist. This is as much as I can tell you at this [...]
Related posts:<ol>
<li><a href='http://www.cozmoslabs.com/620-early-morning-child-theme/' rel='bookmark' title='Early Morning Child Theme'>Early Morning Child Theme</a></li>
<li><a href='http://www.cozmoslabs.com/500-street-wordpress-theme/' rel='bookmark' title='Street WordPress Theme'>Street WordPress Theme</a></li>
<li><a href='http://www.cozmoslabs.com/1298-cozy-child-theme/' rel='bookmark' title='Cozy Child Theme'>Cozy Child Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div id="attachment_1000" class="wp-caption aligncenter" style="width: 610px"><img src="http://www.cozmoslabs.com/wp-content/uploads/2010/02/themes_in_the_work.jpg" alt="" title="themes_in_the_work" width="600" height="225" class="size-full wp-image-1000" /><p class="wp-caption-text">Themes in the Work</p></div>
<p>The last two months have been really productive. So I thought I&#8217;d share with you two of the works in progress. While still far from ready to be released, they are ready to be shown.</p>
<p>Both will be child themes, but with a twist. This is as much as I can tell you at this point, but I&#8217;ll post more details by the end of the month. </p>
<p><span id="more-994"></span></p>
<div id="attachment_1002" class="wp-caption aligncenter" style="width: 610px"><img src="http://www.cozmoslabs.com/wp-content/uploads/2010/02/charisma_teaser.jpg" alt="" title="charisma_teaser" width="600" height="430" class="size-full wp-image-1002" /><p class="wp-caption-text">Charisma Teaser</p></div>
<div id="attachment_1003" class="wp-caption aligncenter" style="width: 610px"><img src="http://www.cozmoslabs.com/wp-content/uploads/2010/02/type_log_teaser.jpg" alt="" title="type_log_teaser" width="600" height="430" class="size-full wp-image-1003" /><p class="wp-caption-text">TypeLog Teaser</p></div>
<p>Related posts:<ol>
<li><a href='http://www.cozmoslabs.com/620-early-morning-child-theme/' rel='bookmark' title='Early Morning Child Theme'>Early Morning Child Theme</a></li>
<li><a href='http://www.cozmoslabs.com/500-street-wordpress-theme/' rel='bookmark' title='Street WordPress Theme'>Street WordPress Theme</a></li>
<li><a href='http://www.cozmoslabs.com/1298-cozy-child-theme/' rel='bookmark' title='Cozy Child Theme'>Cozy Child Theme</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/994-theme-teasers/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Smarter WordPress Theme</title>
		<link>http://www.cozmoslabs.com/817-smarter-wordpress-theme/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=smarter-wordpress-theme</link>
		<comments>http://www.cozmoslabs.com/817-smarter-wordpress-theme/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 14:18:21 +0000</pubDate>
		<dc:creator>Adrian</dc:creator>
				<category><![CDATA[Theme Design]]></category>
		<category><![CDATA[cms theme]]></category>
		<category><![CDATA[smarter theme]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=817</guid>
		<description><![CDATA[Simply put, Smarter is a powerful CMS and business WordPress theme. It gives your blog a personal look, with easy customization, without getting lost into too much options. Its friendly interface and design work together giving your readers a pleasant experience every time they visit your site. Besides, you can get the most out of [...]
Related posts:<ol>
<li><a href='http://www.cozmoslabs.com/1130-the-new-smarter-and-wordpress-3-0/' rel='bookmark' title='The new Smarter and WordPress 3.0'>The new Smarter and WordPress 3.0</a></li>
<li><a href='http://www.cozmoslabs.com/805-smarter-theme-teaser/' rel='bookmark' title='Smarter Theme Teaser'>Smarter Theme Teaser</a></li>
<li><a href='http://www.cozmoslabs.com/1081-charisma-free-genesis-child-theme/' rel='bookmark' title='Charisma, Free Genesis Child Theme'>Charisma, Free Genesis Child Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Simply put, Smarter is a powerful CMS and business WordPress theme.</p>
<div id="attachment_832" class="wp-caption alignnone" style="width: 610px"><img class="size-full wp-image-832  " title="smarter_theme" src="http://www.cozmoslabs.com/wp-content/uploads/2010/01/smarter_theme1.gif" alt="" width="600" height="347" /><p class="wp-caption-text">A Smart WordPress Theme</p></div>
<p>It gives your blog a personal look, with easy customization, without getting lost into too much options.<br />
Its friendly interface and design work together giving your readers a pleasant experience every time they visit your site. Besides, you can get the most out of it&#8217;s SEO friendly structure by using the all in one seo pack plugin.</p>
<h3>Pricing</h3>
<p>For 25$ you can purchase Smarter, which includes the psd files.<br />
Smarter is released under GPL license and that means you can use it on an unlimited number of websites.</p>
<div class="preview_download"><a href="http://www.cozmoslabs.com/project/smarter/"><img src="http://www.cozmoslabs.com/wp-content/uploads/2010/01/preview.gif" alt="preview" /></a><a href="https://www.e-junkie.com/ecom/gb.php?c=cart&#038;i=591710&#038;cl=94691&#038;ejc=2" target="ej_ejc" class="ec_ejc_thkbx" onClick="javascript:return EJEJC_lc(this);"><img src="http://www.cozmoslabs.com/wp-content/uploads/2010/01/buy_now.gif" border="0" alt="Add to Cart"/></a>
</div>
<p><span id="more-817"></span></p>
<p><strong>Smarter theme options include:</strong></p>
<ul>
<li>multiple theme layout</li>
<li>optional use of breadcrumbs</li>
<li>logo or header image upload</li>
<li>customizable text areas (home page description, footer site info)</li>
<li>featured slider pages</li>
<li>different page templates (blog, news, login, register)</li>
<li>menu management</li>
</ul>
<p>They are all meant to allow you to improve and customize your website without having to touch a single line of code.</p>
<p>If you want to learn more about Smarter&#8217;s functionality check out the short video below, and experience the smarter way to start your online presence.</p>
<p><object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0' width='560' height='345'><param name='movie' value='http://screenr.com/Content/assets/screenr_1116090935.swf' /><param name='flashvars' value='i=81717' /><param name='allowFullScreen' value='true' /><embed src='http://screenr.com/Content/assets/screenr_1116090935.swf' flashvars='i=81717' allowFullScreen='true' width='560' height='345' pluginspage='http://www.macromedia.com/go/getflashplayer'></embed></object></p>
<h3>FAQ</h3>
<p><strong>Does the Smarter theme include a contact form?</strong><br />
No. I recommend you use <a href="https://www.e-junkie.com/ecom/gb.php?cl=54585&#038;c=ib&#038;aff=94691" target="ejejcsingle">Gravity Forms</a> or <a href="http://contactform7.com/">Contact Form 7</a></p>
<p><strong>Do you offer any trial version?</strong><br />
No. But you can preview the <a href="http://cozmoslabs.com/project/smarter/">theme demo.</a></p>
<p><strong>How does the order get processed?</strong><br />
Payment is done via PayPal. You will receive a standard Paypal invoice, along side with a download link.</p>
<p><strong>What browsers was Smarter tested on?</strong><br />
Smarter has been tested and works on IE7, IE8, Firefox 3+, Safari 3+, Chrome and Opera 9+.</p>
<h3>Support</h3>
<p>If you have any other question or concerns, visit the Cozmoslabs forums for help (<a href="http://cozmoslabs.com/forums/">http://cozmoslabs.com/forums/</a>).</p>
<div class="preview_download"><a href="http://www.cozmoslabs.com/project/smarter/"><img src="http://www.cozmoslabs.com/wp-content/uploads/2010/01/preview.gif" alt="preview" /></a><a href="https://www.e-junkie.com/ecom/gb.php?c=cart&#038;i=591710&#038;cl=94691&#038;ejc=2" target="ej_ejc" class="ec_ejc_thkbx" onClick="javascript:return EJEJC_lc(this);"><img src="http://www.cozmoslabs.com/wp-content/uploads/2010/01/buy_now.gif" border="0" alt="Add to Cart"/></a>
</div>
<p>Related posts:<ol>
<li><a href='http://www.cozmoslabs.com/1130-the-new-smarter-and-wordpress-3-0/' rel='bookmark' title='The new Smarter and WordPress 3.0'>The new Smarter and WordPress 3.0</a></li>
<li><a href='http://www.cozmoslabs.com/805-smarter-theme-teaser/' rel='bookmark' title='Smarter Theme Teaser'>Smarter Theme Teaser</a></li>
<li><a href='http://www.cozmoslabs.com/1081-charisma-free-genesis-child-theme/' rel='bookmark' title='Charisma, Free Genesis Child Theme'>Charisma, Free Genesis Child Theme</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/817-smarter-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>Smarter Theme Teaser</title>
		<link>http://www.cozmoslabs.com/805-smarter-theme-teaser/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=smarter-theme-teaser</link>
		<comments>http://www.cozmoslabs.com/805-smarter-theme-teaser/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 14:00:13 +0000</pubDate>
		<dc:creator>Cristian</dc:creator>
				<category><![CDATA[Theme Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[screencast]]></category>
		<category><![CDATA[smarter]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=805</guid>
		<description><![CDATA[It&#8217;s called Smarter and simply put it&#8217;s a CMS and business WordPress theme. The idea behind Smarter Theme is to quickly build a presentation website for small and medium size companies without the need to touch a single line of code. We&#8217;ve put together a screencast with a quick walk-through of the theme and its [...]
Related posts:<ol>
<li><a href='http://www.cozmoslabs.com/1130-the-new-smarter-and-wordpress-3-0/' rel='bookmark' title='The new Smarter and WordPress 3.0'>The new Smarter and WordPress 3.0</a></li>
<li><a href='http://www.cozmoslabs.com/817-smarter-wordpress-theme/' rel='bookmark' title='Smarter WordPress Theme'>Smarter WordPress Theme</a></li>
<li><a href='http://www.cozmoslabs.com/145-byty-free-child-theme-built-thematic/' rel='bookmark' title='Byty the Free Child Theme &#8211; Built on Thematic'>Byty the Free Child Theme &#8211; Built on Thematic</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s called Smarter and simply put it&#8217;s a CMS and business WordPress theme.</p>
<p>The idea behind Smarter Theme is to quickly build a presentation website for small and medium size companies without the need to touch a single line of code.</p>
<p>We&#8217;ve put together a screencast with a quick walk-through of the theme and its features. I hope you find it interesting and let me know what you think so far!</p>
<p><object width="598" height="361"><param name="movie" value="http://www.youtube.com/v/2uCVunwZH6U?fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/2uCVunwZH6U?fs=1" type="application/x-shockwave-flash" width="598" height="361" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div class="info-box" style="text-align:center;">
The theme will be released in January 2010 so if I got your attention<br/> <a href="http://twitter.com/sareiodata"><strong>you should follow me on Twitter.</strong></a>
</div>
<p>Related posts:<ol>
<li><a href='http://www.cozmoslabs.com/1130-the-new-smarter-and-wordpress-3-0/' rel='bookmark' title='The new Smarter and WordPress 3.0'>The new Smarter and WordPress 3.0</a></li>
<li><a href='http://www.cozmoslabs.com/817-smarter-wordpress-theme/' rel='bookmark' title='Smarter WordPress Theme'>Smarter WordPress Theme</a></li>
<li><a href='http://www.cozmoslabs.com/145-byty-free-child-theme-built-thematic/' rel='bookmark' title='Byty the Free Child Theme &#8211; Built on Thematic'>Byty the Free Child Theme &#8211; Built on Thematic</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/805-smarter-theme-teaser/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Early Morning Child Theme</title>
		<link>http://www.cozmoslabs.com/620-early-morning-child-theme/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=early-morning-child-theme</link>
		<comments>http://www.cozmoslabs.com/620-early-morning-child-theme/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 10:54:25 +0000</pubDate>
		<dc:creator>Cristian</dc:creator>
				<category><![CDATA[Recomended Reading]]></category>
		<category><![CDATA[Thematic]]></category>
		<category><![CDATA[Theme Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[child theme]]></category>
		<category><![CDATA[thematic child theme]]></category>
		<category><![CDATA[wordpress theme design]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=620</guid>
		<description><![CDATA[This elegant WordPress theme was inspired by the colors of the early morning as I see them from my window. It&#8217;s light, elegant and pleasantly surprising. This theme doesn&#8217;t scream at you, instead it takes a step back and lets the user read. Please don&#8217;t spoil it by putting ads on it! You also have [...]
Related posts:<ol>
<li><a href='http://www.cozmoslabs.com/1287-all-child-themes-got-updated/' rel='bookmark' title='All Child Themes got updated'>All Child Themes got updated</a></li>
<li><a href='http://www.cozmoslabs.com/1298-cozy-child-theme/' rel='bookmark' title='Cozy Child Theme'>Cozy Child Theme</a></li>
<li><a href='http://www.cozmoslabs.com/145-byty-free-child-theme-built-thematic/' rel='bookmark' title='Byty the Free Child Theme &#8211; Built on Thematic'>Byty the Free Child Theme &#8211; Built on Thematic</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This elegant WordPress theme was inspired by the colors of the early morning as I see them from my window. It&#8217;s light, elegant and pleasantly surprising.</p>
<p>This theme doesn&#8217;t scream at you, instead it takes a step back and lets the user read. Please don&#8217;t spoil it by putting ads on it!</p>
<div id="attachment_624" class="wp-caption aligncenter" style="width: 610px"><img src="http://www.cozmoslabs.com/wp-content/uploads/2009/07/early-morning1.jpg" alt="Early Morning - A refreshing child theme for Thematic" title="early-morning" width="600" height="326" class="size-full wp-image-624" /><p class="wp-caption-text">Early Morning - A refreshing child theme for Thematic</p></div>
<p><span id="more-620"></span></p>
<h2>You also have some nifty options:</h2>
<ul>
<li>You can upload your own logo</li>
<li>It comes with it&#8217;s own custom designed Twitter widget, so your visitors can see what you&#8217;re doing from your blog</li>
<li>If green isn&#8217;t your style, it comes with 5 background options that you can select from the <strong>Early Morning Theme Options</strong> (Green, Turquoise, Brick Red, Gray and Black)</li>
<li>Has a one column page template and archive template</li>
<li>It&#8217;s been tested and works on Firefox 3.5, Safari 4, Opera 9, Chrome, IE7, IE8</li>
</ul>
<p class="info-box">
In order to install it you have to download the <a href="http://themeshaper.com/thematic/">Thematic Theme</a> (from which this child theme inherits all of the functionality), upload both themes (Early Morning and Thematic) to your server in the themes folder AND THEN ACTIVATE the Early Morning Theme.
</p>
<div class="preview_download">
<a href="http://www.cozmoslabs.com/projects/early/"><img src="http://www.cozmoslabs.com/wp-content/uploads/2009/07/preview.gif" alt="preview"/></a><a class="downloadlink dlimg" href="http://www.cozmoslabs.com/wp-content/plugins/download-monitor/download.php?id=7" title="Version 0.4 downloaded 9963 times" ><img src="http://www.cozmoslabs.com/wp-content/uploads/2010/11/download.jpg" alt="Download Early Morning Version 0.4" /></a>
</div>
<div class="preview_download">
Inspired by: <a href="http://www.adrianpelletier.com/">Adrian Pelletier</a>
</div>
<p>Related posts:<ol>
<li><a href='http://www.cozmoslabs.com/1287-all-child-themes-got-updated/' rel='bookmark' title='All Child Themes got updated'>All Child Themes got updated</a></li>
<li><a href='http://www.cozmoslabs.com/1298-cozy-child-theme/' rel='bookmark' title='Cozy Child Theme'>Cozy Child Theme</a></li>
<li><a href='http://www.cozmoslabs.com/145-byty-free-child-theme-built-thematic/' rel='bookmark' title='Byty the Free Child Theme &#8211; Built on Thematic'>Byty the Free Child Theme &#8211; Built on Thematic</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/620-early-morning-child-theme/feed/</wfw:commentRss>
		<slash:comments>171</slash:comments>
		</item>
		<item>
		<title>Street WordPress Theme</title>
		<link>http://www.cozmoslabs.com/500-street-wordpress-theme/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=street-wordpress-theme</link>
		<comments>http://www.cozmoslabs.com/500-street-wordpress-theme/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 16:45:00 +0000</pubDate>
		<dc:creator>Cristian</dc:creator>
				<category><![CDATA[Thematic]]></category>
		<category><![CDATA[Theme Design]]></category>
		<category><![CDATA[child theme]]></category>
		<category><![CDATA[street]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=500</guid>
		<description><![CDATA[Street is something that was created from a spark of inspiration, something that I felt should look like this. This wasn&#8217;t thought out nor planed. It uses the beautiful Vegur Free Font for the headings and main menu, implemented by Cufon (text replacement technique). I&#8217;ve spent a great deal of time searching for the perfect [...]
Related posts:<ol>
<li><a href='http://www.cozmoslabs.com/1298-cozy-child-theme/' rel='bookmark' title='Cozy Child Theme'>Cozy Child Theme</a></li>
<li><a href='http://www.cozmoslabs.com/620-early-morning-child-theme/' rel='bookmark' title='Early Morning Child Theme'>Early Morning Child Theme</a></li>
<li><a href='http://www.cozmoslabs.com/145-byty-free-child-theme-built-thematic/' rel='bookmark' title='Byty the Free Child Theme &#8211; Built on Thematic'>Byty the Free Child Theme &#8211; Built on Thematic</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Street is something that was created from a spark of inspiration, something that I felt should look like this. This wasn&#8217;t thought out nor planed.</p>
<p>It uses the beautiful <a href="http://www.dotcolon.net/font/font.php?id=1">Vegur Free Font</a> for the headings and main menu, implemented by <a href="http://wiki.github.com/sorccu/cufon/about">Cufon</a> (text replacement technique). I&#8217;ve spent a great deal of time searching for the perfect free font for this theme, but I think I found the right combination.</p>
<p>While this child theme is just a skin for <a href="http://themeshaper.com/thematic/">Thematic</a>, because this exact reason is also functional. You have access to all 13 Widget Areas <strong>Thematic</strong> uses, the semantically correct HTML that is great for SEO, can use a page template that spans the entire width of the page without the sidebars and even you can <strong>upload your own logo or header image</strong> from the &#8220;Street Theme Options&#8221;.</p>
<p class="preview_download"><a href="http://cozmoslabs.com/projects/street/" target="_blank"><img src="http://www.cozmoslabs.com/wp-content/uploads/2009/06/preview.gif" border="0" alt="preview thematic child theme" /></a> <a class="downloadlink dlimg" href="http://www.cozmoslabs.com/wp-content/plugins/download-monitor/download.php?id=5" title="Version 0.2 downloaded 6213 times" ><img src="http://www.cozmoslabs.com/wp-content/uploads/2010/11/download.jpg" alt="Download Street Child Theme for Thematic Version 0.2" /></a></p>
<div id="attachment_505" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-505" title="street_theme" src="http://www.cozmoslabs.com/wp-content/uploads/2009/06/street_theme.gif" alt="street_theme" width="600" height="395" /><p class="wp-caption-text">An elegant Child Theme for Thematic</p></div>
<p>I hope you&#8217;ll enjoy using this theme as much I enjoyed creating it!</p>
<p class="info-box">
In order to install it you have to download the <a href="http://themeshaper.com/thematic/">Thematic Theme</a> (from which this child theme inherits all of the functionality), upload both themes (Street and Thematic) to your server in the themes folder AND THEN ACTIVATE the Street theme.</p>
<p>Related posts:<ol>
<li><a href='http://www.cozmoslabs.com/1298-cozy-child-theme/' rel='bookmark' title='Cozy Child Theme'>Cozy Child Theme</a></li>
<li><a href='http://www.cozmoslabs.com/620-early-morning-child-theme/' rel='bookmark' title='Early Morning Child Theme'>Early Morning Child Theme</a></li>
<li><a href='http://www.cozmoslabs.com/145-byty-free-child-theme-built-thematic/' rel='bookmark' title='Byty the Free Child Theme &#8211; Built on Thematic'>Byty the Free Child Theme &#8211; Built on Thematic</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/500-street-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>88</slash:comments>
		</item>
	</channel>
</rss>

