<?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</title>
	<atom:link href="http://www.cozmoslabs.com/tag/theme/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>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>Awesome Thematic Templates</title>
		<link>http://www.cozmoslabs.com/650-awesome-thematic-templates/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=awesome-thematic-templates</link>
		<comments>http://www.cozmoslabs.com/650-awesome-thematic-templates/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 12:19:13 +0000</pubDate>
		<dc:creator>Cristian</dc:creator>
				<category><![CDATA[Thematic]]></category>
		<category><![CDATA[log in]]></category>
		<category><![CDATA[register]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=650</guid>
		<description><![CDATA[Did you ever think about page templates for user registration and log in? Well, we have. Justin&#8217;s Hybrid has them, Thematic doesn&#8217;t. So we&#8217;ve taken the Hybrid templates, adapted them for Thematic, and guess what? They&#8217;re working like a charm. Just upload them to your child theme directory and enjoy. Get’em while they’re hot! Related [...]
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/500-street-wordpress-theme/' rel='bookmark' title='Street WordPress Theme'>Street WordPress Theme</a></li>
<li><a href='http://www.cozmoslabs.com/202-replacing-the-thematic-menu-with-a-dropdown-list-of-categories/' rel='bookmark' title='Replacing the Thematic Menu with a DropDown List of Categories'>Replacing the Thematic Menu with a DropDown List of Categories</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Did you ever think about page templates for user registration and log in? Well, we have. Justin&#8217;s <a href="http://themehybrid.com/">Hybrid</a> has them, Thematic doesn&#8217;t. So we&#8217;ve taken the Hybrid templates, adapted them for Thematic, and guess what? They&#8217;re working like a charm. Just upload them to your child theme directory and enjoy.</p>
<p>Get’em while they’re hot!</p>
<p class="preview_download"><a class="downloadlink dlimg" href="http://www.cozmoslabs.com/wp-content/plugins/download-monitor/download.php?id=8" title="Version 0.1 downloaded 1625 times" ><img src="http://www.cozmoslabs.com/wp-content/uploads/2010/11/download.jpg" alt="Download Awesome Templates Version 0.1" /></a></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/500-street-wordpress-theme/' rel='bookmark' title='Street WordPress Theme'>Street WordPress Theme</a></li>
<li><a href='http://www.cozmoslabs.com/202-replacing-the-thematic-menu-with-a-dropdown-list-of-categories/' rel='bookmark' title='Replacing the Thematic Menu with a DropDown List of Categories'>Replacing the Thematic Menu with a DropDown List of Categories</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/650-awesome-thematic-templates/feed/</wfw:commentRss>
		<slash:comments>6</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 6214 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>
		<item>
		<title>Future Child Themes for Thematic in the works</title>
		<link>http://www.cozmoslabs.com/440-future-child-theme/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=future-child-theme</link>
		<comments>http://www.cozmoslabs.com/440-future-child-theme/#comments</comments>
		<pubDate>Tue, 26 May 2009 16:18:55 +0000</pubDate>
		<dc:creator>Cristian</dc:creator>
				<category><![CDATA[Theme Design]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=440</guid>
		<description><![CDATA[Spring is at it&#8217;s end and makes room for a promising Summer. Finishing the new design was a fulfilling moment for me. When you put so much effort into something, your personal expectations are always high. Building something for myself and things are prone to be problematic. In the initial stages nothing really feels right [...]
Related posts:<ol>
<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>
<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/1287-all-child-themes-got-updated/' rel='bookmark' title='All Child Themes got updated'>All Child Themes got updated</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Spring is at it&#8217;s end and makes room for a promising Summer. Finishing the new design was a fulfilling moment for me. When you put so much effort into something, your personal expectations are always high. Building something for myself and things are prone to be problematic. In the initial stages nothing really feels right and nothing is good enough. </p>
<p>But now that the new design is live I&#8217;m happy I&#8217;ve changed it and with it behind me I can start focusing on other projects. </p>
<p>For the near future I want to release two new child themes for <a href="http://themeshaper.com/thematic/" rel="nofollow">Thematic</a>, one of which might even be released as a stand alone theme also, for inclusion into the <a href="http://wordpress.org/extend/themes/">WordPress Theme Repository</a>. </p>
<p>The first theme to be released will be my design for Cozmoslabs. I still have to clear it up since it&#8217;s full of hacks. </p>
<p>The second theme is an artsy-grunge kind of theme. The design is almost done so I only have to implement it as a child theme. Here are some screen shots.<br />
Feedback is always welcomed.</p>
<p><a href="http://www.cozmoslabs.com/wp-content/uploads/2009/05/layout01.png"><img src="http://www.cozmoslabs.com/wp-content/uploads/2009/05/layout01-271x300.png" alt="layout01" title="layout01" width="271" height="300" class="alignleft size-medium wp-image-441" /></a><br />
<a href="http://www.cozmoslabs.com/wp-content/uploads/2009/05/layout01_page.png"><img src="http://www.cozmoslabs.com/wp-content/uploads/2009/05/layout01_page-300x235.png" alt="layout01_page" title="layout01_page" width="300" height="235" class="alignright size-medium wp-image-442" /></a></p>
<p>Related posts:<ol>
<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>
<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/1287-all-child-themes-got-updated/' rel='bookmark' title='All Child Themes got updated'>All Child Themes got updated</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.cozmoslabs.com/440-future-child-theme/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Byty the Free Child Theme &#8211; Built on Thematic</title>
		<link>http://www.cozmoslabs.com/145-byty-free-child-theme-built-thematic/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=byty-free-child-theme-built-thematic</link>
		<comments>http://www.cozmoslabs.com/145-byty-free-child-theme-built-thematic/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 06:28:04 +0000</pubDate>
		<dc:creator>Cristian</dc:creator>
				<category><![CDATA[Recomended Reading]]></category>
		<category><![CDATA[Theme Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[child theme]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Thematic]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.cozmoslabs.com/?p=145</guid>
		<description><![CDATA[&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; This is my first Free to Download Child Theme. It was built for a friend of mine and we decided to release it for free in hope of some extra publicity . In order to install it you have to download the Thematic Theme (from which this child theme inherits all of the functionality), [...]
Related posts:<ol>
<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>
<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/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[<div id="preview_download"><a href="http://cozmoslabs.com/project/byty/" target="_blank"><img src="http://www.cozmoslabs.com/wp-content/uploads/2008/10/preview.gif" border="0" alt="preview child theme" /></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a class="downloadlink dlimg" href="http://www.cozmoslabs.com/wp-content/plugins/download-monitor/download.php?id=1" title="Version 0.5 downloaded 8065 times" ><img src="http://www.cozmoslabs.com/wp-content/uploads/2010/11/download.jpg" alt="Download Byty Child Theme Version 0.5" /></a></div>
<p>This is my first Free to Download Child Theme. It was built for a <a href="http://byty.ro">friend of mine</a> and we decided to release it for free in hope of some extra publicity <img src='http://www.cozmoslabs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  .</p>
<div id="showcase_blogs" style="background:#caf8b2;">
In order to install it you have to download the <a href="http://themeshaper.com/thematic-for-wordpress/">Thematic Theme</a> (from which this child theme inherits all of the functionality), upload both themes (Byty and Thematic) to your server in the themes folder AND THEN ACTIVATE the Byty theme.
</div>
<p><span id="more-145"></span></p>
<p>To make matters short here is a screen shot:</p>
<p><img class="aligncenter size-full wp-image-146" title="byty_screen" src="http://www.cozmoslabs.com/wp-content/uploads/2008/10/byty_screen.jpg" alt="" width="500" height="398" /></p>
<p>Over the next week I&#8217;ll post small tips and tutorials about how to customize this theme in order to remove/change the top ad, style plugins that are not normally supported, etc.</p>
<p>If you have questions don&#8217;t hesitate to ask!</p>
<div id="showcase_blogs">
<h3>Blogs that are using this theme</h3>
<ul>
<li><a href="http://byty.ro">byty.ro</a></li>
<li><a href="http://www.thingsiread.org/">thingsiread.org</a></li>
<li><a href="http://unrealistic-expectations.net/">unrealistic-expectations.net</a></li>
</ul>
<p><em>If you are using this <strong>Child Theme</strong> leave a comment and I&#8217;ll add you to this list</em></div>
<div id="showcase_blogs" style="background:#caf8b2;">
Byty has been updated to the latest version of Thematic (0.9) and will not work with older versions!
</div>
<p>Related posts:<ol>
<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>
<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/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/145-byty-free-child-theme-built-thematic/feed/</wfw:commentRss>
		<slash:comments>119</slash:comments>
		</item>
	</channel>
</rss>

