<?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>Clazh &#187; Web-Design</title>
	<atom:link href="http://www.clazh.com/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.clazh.com</link>
	<description>Technology &#38; Design</description>
	<lastBuildDate>Thu, 18 Feb 2010 09:27:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Post Wordpress To Twitter Automatically, With Short URLs, No Plugin Required</title>
		<link>http://www.clazh.com/post-wordpress-to-twitter-automatically-with-short-urls-no-plugin-required/</link>
		<comments>http://www.clazh.com/post-wordpress-to-twitter-automatically-with-short-urls-no-plugin-required/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 17:09:45 +0000</pubDate>
		<dc:creator>Arpit Jacob</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Web-Design]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.clazh.com/?p=410</guid>
		<description><![CDATA[Updated: Found a Fix for the missing post id at the end of the url using $postLink = urlencode  ( $postLink ) ;
Updated: Got rid of the Custom Metadata, used the modified date and the created date of the post to check if its a new post or an old one. Now you don&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Updated</strong>: Found a Fix for the missing post id at the end of the url using <code>$postLink = urlencode  ( $postLink ) ;</code></p>
<p><strong>Updated</strong>: Got rid of the Custom Metadata, used the modified date and the created date of the post to check if its a new post or an old one. Now you don&#8217;t have to worry about updating your old posts.</p>
<p><strong>Updated</strong>: To Make the title text more Twitter friendly.</p>
<p>I been trying to cut down on the number of Plugins used. Firstly to make maintained easier, secondly to simplify and reduce to the bare minimum without using Plugins, thirdly to hone up my WordPress skills. The latest plugin I got rid of was the WP to Twitter Plugin. Initially I started off trying to modify how I wanted it to work. Basically I wanted to cut off Bit.ly as a URL shortner and use my own blog as a URL shortner to send people directly to my site and keep the traffic on my site without the need for a middle man. I figured this out after I saw how <a rel="nofollow" href="http://labnol.org">Amit Aggarwal</a> was tweeting his links to his site.</p>
<h2>Short URLs in WordPress without Bit.ly or URL Shortners</h2>
<p>We all know that WordPress generates long Permalinks for your site, it automatically converts your titles into those long URLs called permalinks that you see. Example <strong>http://www.clazh.com/this_is_some_random_post</strong>, If you switch off Permalinks in WordPress you&#8217;ll see that links to your posts will be of the form <strong>http://www.clazh.com/?p=401</strong> if you look at it you&#8217;ll notice the last bit has a number attached to it, each post has a unique ID associated to it. The trick is to make use of this ID to and create a URL for our posts, so when people click on this shortned link they&#8217;ll be automatically taken to the Permalink associated with that post its as simple as that.</p>
<h2>A Simple WordPress To Twitter Function.</h2>
<p>First we&#8217;ll write a really simple function that uses CURL to post to the Twitter API.  Just copy paste it into your <code>functions.php</code> file in your WordPress theme directory. In case you don&#8217;t see the file in yours themes folder just create one and paste the code inside it. To check if CURL is enabled on your server you can paste this function into a blank PHP file and call the function like this <code>twitterUpdate("some random post", "http://clazh.com", true);</code> with some random inputs. Make sure you uncomment the last few lines where it says to uncomment to test for CURL support.</p>
<p>Note: In the rare case your host does not support CURL you can always make use of <a href="http://php.net/manual/en/function.fsockopen.php">fsockopen for PHP 4</a> or the much easier <a href="http://www.php.net/manual/en/context.http.php">stream_context_creat for PHP5</a></p>
<pre>function twitterUpdate($postTitle, $postLink, $isNew)
{
	// Enter Your Twitter ID Here
	$username = 'Twitter_ID';
	// Enter Your Twitter Password Here
	$password = 'Password';

        # text into a twitter friendly text
	$code_entities_match = array('--','"','!','@','#','$','%','^','&amp;','*','(',')','_','+','{','}','|',':','"','&lt;','&gt;','?','[',']','\\',';',"'",',','.','/','*','+','~','`','=');
	$code_entities_replace = array('-','','','','','','','','','','','','','','','','','','','','','','','','');
	$postTitle = str_replace($code_entities_match, $code_entities_replace, $postTitle);

	// Check if New or Updated Post
	if($isNew)
		$postTitle = 'New Post: ' . $postTitle;
	else
		$postTitle = 'Updated Post: ' . $postTitle;

	// Calculate Twitter Msg and keep it under 140 Chars
        if(strlen ($postTitle) &gt; (140 - strlen ($postLink)))
		$postTitle 		= substr_replace($postTitle, '...', (140 - 3 - strlen ($postLink)));

	$message = $postTitle . $postLink;

	// The twitter API address
	$url = 'http://twitter.com/statuses/update.xml';
	$curl_handle = curl_init();
	curl_setopt($curl_handle, CURLOPT_URL, "$url");
	curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 2);
	curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
	curl_setopt($curl_handle, CURLOPT_POST, 1);
	curl_setopt($curl_handle, CURLOPT_POSTFIELDS, "status=$message");
	curl_setopt($curl_handle, CURLOPT_USERPWD, "$username:$password");
	$buffer = curl_exec($curl_handle);
	curl_close($curl_handle);

	// Uncomment the lines below to check if
	// CURL is enabled on your Web Server
	// check for success or failure
	/*
	if (empty($buffer))
		echo 'message';
	else
		echo 'success';
	*/
}</pre>
<h2>WordPress Function that Triggers Post To Twitter</h2>
<p>Next we&#8217;ll write a simple wordpress function that triggers whenever you update or publish a post, we will also added a custom metadata to the post check if its a new or old post. Copy paste this code below the twitterUpdate function in your <code>functions.php</code> themes file.</p>
<pre>function postToTwitter($post_ID)
{
	// Create your Short URL replace with your blog url
	$postLink = ' http://clazh.com/?p=' . $post_ID;
	// encode the URL to fix Post to Twitter issues
        $postLink = urlencode  ( $postLink ) ;
	// Get the Post Object
	$get_post_info 	= get_post( $post_ID );
	// Get the Post Title
	$postTitle = $get_post_info-&gt;post_title;
        // Get the Post date
	$postDate 		= date('U', strtotime($get_post_info-&gt;post_date));
	// Get the post Modified date
	$postModified 	= date('U', strtotime($get_post_info-&gt;post_modified));

	// Check if the post is new or modified
	if($postModified == $postDate)
	{
		twitterUpdate($postTitle, $postLink, true);
	}
	/*  If You want to fire everytime You update
	      a post remove these comments around the else.
	else
	{
		twitterUpdate($postTitle, $postLink, false);
	}
	*/
}

// Post to twitter when you publish or update a post
add_action('publish_post', 'postToTwitter');</pre>
<p>So thats about it, just paste these two blocks of code into your <code>functions.php</code> and change the required parameter, you can play around with the code and modify it to change the message being posted to twitter.</p>


<p>Related posts:<ol><li><a href='http://www.clazh.com/guest-bloggers-required-sandbox-wordpress-theme-suggestions/' rel='bookmark' title='Permanent Link: Guest Bloggers Required, SandBox Wordpress Theme Suggestions'>Guest Bloggers Required, SandBox Wordpress Theme Suggestions</a></li>
<li><a href='http://www.clazh.com/wordpress-plugin-better-comments-manager-update/' rel='bookmark' title='Permanent Link: Wordpress Plugin Better Comments Manager Update'>Wordpress Plugin Better Comments Manager Update</a></li>
<li><a href='http://www.clazh.com/wordpress-security-alert-adsense-deluxe-vulnerable/' rel='bookmark' title='Permanent Link: Wordpress Security Alert Adsense Deluxe Plugin Vulnerable'>Wordpress Security Alert Adsense Deluxe Plugin Vulnerable</a></li>
<li><a href='http://www.clazh.com/who-sees-ads-10-wordpress-plugin-released/' rel='bookmark' title='Permanent Link: Who Sees Ads 1.0 Wordpress Plugin Released'>Who Sees Ads 1.0 Wordpress Plugin Released</a></li>
<li><a href='http://www.clazh.com/feedsmith-the-official-feedburner-wordpress-plugin/' rel='bookmark' title='Permanent Link: FeedSmith The Official FeedBurner Wordpress Plugin'>FeedSmith The Official FeedBurner Wordpress Plugin</a></li>
</ol></p><hr />
<p><small>© Arpit Jacob for <a href="http://www.clazh.com">Clazh</a>, 2009. |
<a href="http://www.clazh.com/post-wordpress-to-twitter-automatically-with-short-urls-no-plugin-required/">Permalink</a> |
<a href="http://www.clazh.com/post-wordpress-to-twitter-automatically-with-short-urls-no-plugin-required/#comments">15 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.clazh.com/post-wordpress-to-twitter-automatically-with-short-urls-no-plugin-required/&title=Post Wordpress To Twitter Automatically, With Short URLs, No Plugin Required">del.icio.us</a>
<br/>
Catergories: <a href="http://www.clazh.com/category/featured/" title="View all posts in Featured" rel="category tag">Featured</a>,  <a href="http://www.clazh.com/category/tutorial/" title="View all posts in Tutorial" rel="category tag">Tutorial</a>,  <a href="http://www.clazh.com/category/web-design/" title="View all posts in Web-Design" rel="category tag">Web-Design</a>,  <a href="http://www.clazh.com/category/wordpress/" title="View all posts in Wordpress" rel="category tag">Wordpress</a>  Tags: <br/> 
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.clazh.com/post-wordpress-to-twitter-automatically-with-short-urls-no-plugin-required/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>10 Free Web Design Icons For Download, Used On This Web Site</title>
		<link>http://www.clazh.com/free-web-design-icons-download-web-development-projects/</link>
		<comments>http://www.clazh.com/free-web-design-icons-download-web-development-projects/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 17:32:28 +0000</pubDate>
		<dc:creator>Arpit Jacob</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Web-Design]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Icons]]></category>
		<category><![CDATA[UX]]></category>
		<category><![CDATA[Web-Development]]></category>

		<guid isPermaLink="false">http://www.clazh.com/?p=405</guid>
		<description><![CDATA[I thought I would review and showcase some of the beautiful Icons that I made use of while designing this web site. I redesigned the site a week back and have made extensive use of various icons across the site. All the icons featured on this site are freely available for download and can be [...]]]></description>
			<content:encoded><![CDATA[<p>I thought I would review and showcase some of the beautiful Icons that I made use of while designing this web site. I redesigned the site a week back and have made extensive use of various icons across the site. All the icons featured on this site are freely available for download and can be used for both commercial and personal use. Some of the icon designers require you to link back to their blog or web site. Using icons while designing your web site, blog or web application not only helps to increase the usability of the user interface by providing visual cues to the user, but also makes your design look more pleasing in terms of the look and feel. Its important that the Icons you use convey the right visual cue to the user. The iPhone is a great example of an application which makes extensive use of Icons. Computer users are very familiar with the use of icons especially the ones that they come across everyday in their day to day use. With the onslaught of so many social networking sites, each brand is now associated with their own colours, logos and icons. Some common examples are Apple, Windows, and Google.</p>
<p>Here are 9 + 1 Icon sets and collections that I used on this site and 1 bonus icon collection that I contemplated using for the design.</p>
<h2>Social Network Icon Pack</h2>
<p>Social Network Icon Pack By Komodo Media. These icons are really quite popular and have become common place. Designed by the awesome Rogie King. It contain a extensive list of icons in 16px and 32px for the most popular social networking sites on the internet. These 16px Icons are really crisp and sharp.</p>
<div class="wp-caption alignnone"><span class="image"><img title="Social Networking Icons" src="http://i600.photobucket.com/albums/tt89/arpitjacob/social-Network.png" alt="Social Networking Icons" width="530" height="100" /><span class="wp-caption-text">Social Networking Icons</span></span></div>
<p>Download the <a title="Social Network Icon pack" href="http://www.komodomedia.com/download/">Social Network Icon pack</a></p>
<h2>The Oxygen icon theme</h2>
<p>An Open Source Icon Them, the Oxygen icon theme was initially started by David Vignoni, then a number of other designer joined in to create an Icon Theme for the KDE Desktop. The icons are a collection of different works from different designer. While there is no official download package you can download it from the Ubuntu repository.</p>
<div class="wp-caption alignnone"><span class="image"><img title="Oxygen Icon Theme" src="http://i600.photobucket.com/albums/tt89/arpitjacob/oxygen.png" alt="Oxygen Icon Theme" width="530" height="260" /><span class="wp-caption-text">Oxygen Icon Theme</span></span></div>
<p>Download the <a title="Oxgen Icon Theme" href="http://packages.ubuntu.com/jaunty/all/kde-icons-oxygen/download">Oxgen Icon Them</a> Note: Download the Deb Package and use 7-zip to unzip and extract the contents.</p>
<h2>iPhone style sidebar icons</h2>
<p>These pretty Icons were created by Susumu Yoshida. I found it while hunting around for 16px Icons.</p>
<div class="wp-caption alignnone"><span class="image"><img title="iPhone Toolbar Icons" src="http://i600.photobucket.com/albums/tt89/arpitjacob/iphone-toolbar.png" alt="iPhone Toolbar Icons" width="530" height="140" /><span class="wp-caption-text">iPhone Toolbar Icons</span></span></div>
<p>Download the <a title="iPhone Style Sidebar Icons" href="http://www.mcdodesign.com/downloads/?p=78">iPhone Style Sidebar Icons</a></p>
<h2>The Crystal icon theme</h2>
<p>Another Open source Icon theme created by Everaldo and a list of few other designers designed exclusively for Linux. These icons are very Popular and have been ported to Windows and the Mac too.</p>
<div class="wp-caption alignnone"><span class="image"><img title="Crystal Icon Theme" src="http://i600.photobucket.com/albums/tt89/arpitjacob/crystal.png" alt="Crystal Icon Theme" width="530" height="260" /><span class="wp-caption-text">Crystal Icon Theme</span></span></div>
<p>Download the <a title="Crystal icon theme" href="http://www.everaldo.com/crystal/">Crystal icon theme</a></p>
<h2>Danish Royalty Free Icons</h2>
<p>Create by the famous now retired Icon designer, Jonas Rask of Denmark, these are a list of Icons designed exclusively for the Web and for use in web applications.</p>
<div class="wp-caption alignnone"><span class="image"><img title="Danish Royalty Free Icons" src="http://i600.photobucket.com/albums/tt89/arpitjacob/danish_royalty_free.png" alt="Danish Royalty Free Icons" width="530" height="260" /><span class="wp-caption-text">Danish Royalty Free Icons</span></span></div>
<p>Download <a title="Danish Royalty Free Icons" href="http://jonasraskdesign.com/iconarchive/iconarchive.html">Danish Royalty Free Icons</a></p>
<h2>Web Injection Icons</h2>
<p>Web Injection Icons Designed by Jonatan Castro from Galicia, Spain. A small collections of web icons.</p>
<div class="wp-caption alignnone"><span class="image"><img title="Web Injection Icons" src="http://i600.photobucket.com/albums/tt89/arpitjacob/Web_injection_Icons.png" alt="Web Injection Icons" width="530" height="100" /><span class="wp-caption-text">Web Injection Icons</span></span></div>
<p>Download the <a title="Web Injection Icons" href="http://www.midtonedesign.com/#portfolio?webinjection">Web Injection Icons</a></p>
<h2>Toolbar Icons Starter Kit</h2>
<p>A small set of web Toolbar Icons, created by Kombine, contains about 45 Icons in the set.</p>
<div class="wp-caption alignnone"><span class="image"><img title="Kombine Toolbar Icons Kit" src="http://i600.photobucket.com/albums/tt89/arpitjacob/Kombine_toolbar_icons.png" alt="Kombine Toolbar Icons Kit" width="530" height="190" /><span class="wp-caption-text">Kombine Toolbar Icons Kit</span></span></div>
<p>Download the <a title="Kombine Icons Starter Kit" href="http://www.kombine.net/free#icons-toolbar">Toolbar Icons Starter Kit</a></p>
<h2>Glyphish Icons for iPhone Applications</h2>
<p>A collection of 130 icons for iPhone applications. Created by Joseph Wain. Has been used in a large number of popular iPhone Applications.</p>
<div class="wp-caption alignnone"><span class="image"><img title="Glyphish iPhone Icons" src="http://i600.photobucket.com/albums/tt89/arpitjacob/Glyphish_iPhone_icons.png" alt="Glyphish iPhone Icons" width="530" height="198" /><span class="wp-caption-text">Glyphish iPhone Icons</span></span></div>
<p>Download the <a title="Glyphish Icons for iPhone Applications" href="http://glyphish.com/">Glyphish Icons for iPhone Applications</a></p>
<h2>DelliPack 1 &amp; 2 Icons</h2>
<p>A small set of generic web Icons created by Dellustrations.</p>
<div class="wp-caption alignnone"><span class="image"><img title="Dellipack Icons" src="http://i600.photobucket.com/albums/tt89/arpitjacob/Dellipack_icons.png" alt="Dellipack Icons" width="530" height="200" /><span class="wp-caption-text">Dellipack Icons</span></span></div>
<p>Download the <a title="Dellipack 1 &amp; 2" href="http://www.dellustrations.com/work_icons.html">Dellipack 1 &amp; 2 Icons</a></p>
<h2>MinIcons Set</h2>
<p>Though I didn&#8217;t use any of these Icons to round of the number to 10 I included MinIcons Set by Asher Abbasi.</p>
<div class="wp-caption alignnone"><span class="image"><img title="Mini Icons" src="http://i600.photobucket.com/albums/tt89/arpitjacob/Mini_Icons.png" alt="Mini Icons" width="530" height="140" /><span class="wp-caption-text">Mini Icons</span></span></div>
<p>Download the <a title="MinIcon Icons" href="http://kyo-tux.deviantart.com/art/MinIcons-115690703">MinIcons Set</a></p>


<p>Related posts:<ol><li><a href='http://www.clazh.com/crystal-superb-beautiful-open-source-icons/' rel='bookmark' title='Permanent Link: &quot;Crystal&quot; Superb Beautiful Open Source Icons'>&quot;Crystal&quot; Superb Beautiful Open Source Icons</a></li>
<li><a href='http://www.clazh.com/get-6-paid-mac-os-x-applications-for-free/' rel='bookmark' title='Permanent Link: Get 6 Paid Mac OS X Applications For Free'>Get 6 Paid Mac OS X Applications For Free</a></li>
<li><a href='http://www.clazh.com/how-to-conjure-your-own-site-design/' rel='bookmark' title='Permanent Link: How To: Conjure Your Own Site Design'>How To: Conjure Your Own Site Design</a></li>
<li><a href='http://www.clazh.com/my-web-design-got-ripped/' rel='bookmark' title='Permanent Link: My Web Design Got Ripped'>My Web Design Got Ripped</a></li>
<li><a href='http://www.clazh.com/unlimited-free-international-calls-after-activating-google-voice-outside-us/' rel='bookmark' title='Permanent Link: Unlimited Free International Calls &#038; SMS After Activating Google Voice Outside US'>Unlimited Free International Calls &#038; SMS After Activating Google Voice Outside US</a></li>
</ol></p><hr />
<p><small>© Arpit Jacob for <a href="http://www.clazh.com">Clazh</a>, 2009. |
<a href="http://www.clazh.com/free-web-design-icons-download-web-development-projects/">Permalink</a> |
<a href="http://www.clazh.com/free-web-design-icons-download-web-development-projects/#comments">2 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.clazh.com/free-web-design-icons-download-web-development-projects/&title=10 Free Web Design Icons For Download, Used On This Web Site">del.icio.us</a>
<br/>
Catergories: <a href="http://www.clazh.com/category/downloads/" title="View all posts in Downloads" rel="category tag">Downloads</a>,  <a href="http://www.clazh.com/category/featured/" title="View all posts in Featured" rel="category tag">Featured</a>,  <a href="http://www.clazh.com/category/web-design/" title="View all posts in Web-Design" rel="category tag">Web-Design</a>  Tags: <a href="http://www.clazh.com/tag/download/" rel="tag">Download</a>, <a href="http://www.clazh.com/tag/free/" rel="tag">Free</a>, <a href="http://www.clazh.com/tag/icons/" rel="tag">Icons</a>, <a href="http://www.clazh.com/tag/ux/" rel="tag">UX</a>, <a href="http://www.clazh.com/tag/web-design/" rel="tag">Web-Design</a>, <a href="http://www.clazh.com/tag/web-development/" rel="tag">Web-Development</a><br/> 
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.clazh.com/free-web-design-icons-download-web-development-projects/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Reborn, Resurrected, Relaunched, Reloaded, Redesigned</title>
		<link>http://www.clazh.com/reborn-resurrected-relaunched-reloaded-redesigned/</link>
		<comments>http://www.clazh.com/reborn-resurrected-relaunched-reloaded-redesigned/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 22:15:48 +0000</pubDate>
		<dc:creator>Arpit Jacob</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Web-Design]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://localhost:8888/wordpress/?p=1</guid>
		<description><![CDATA[So here we are at last, more than a year has gone by since I left this blog in limbo. To kick-start my blogging again I decided to redesign and re-brand the blog. As I mentioned in my previous post I am currently working as a freelance Web/UI designer for the last 10 months or [...]]]></description>
			<content:encoded><![CDATA[<p>So here we are at last, more than a year has gone by since I left this blog in limbo. To kick-start my blogging again I decided to redesign and re-brand the blog. As I mentioned in my previous post I am currently working as a freelance Web/UI designer for the last 10 months or so. So after an year and a half of procrastination, I present you the all new <strong>Clazh Technology and Design</strong>. Expect me start blogging regularly from now on. I am also advertising my skills as a web designer, very soon I will be selling a some really cool WordPress themes and templates so watch out. A lot of exciting things have happened in the last one year, I hope to keep that momentum going.</p>
<h3>About the new design.</h3>
<p>Well this is the longest time I have ever taken to design something, the design went through more than 40 revisions, it was partly my fault since kept putting it in the back burner and every time I brought it up to work on I would change something. I happy with the overall look and design. I know its not as colorful as my last one. The pink color in my last design became a running joke among my friends. Currently the site is still in beta.</p>
<ul>
<li>Running on the latest and best WordPress 2.8.</li>
<li>Very Lightweight.</li>
<li>Uses only one image for the whole site, CSS Sprites.</li>
<li>All Javascript are hosted on External CDN</li>
<li>New featured content slider on the homepage.</li>
<li>New community submitted articles.</li>
</ul>
<p>Please do provide some feedback, will really appreciate it. If something is broken get in touch with me using the contact form. Lots more new stuff coming up on the site just keep a watch.</p>


<p>Related posts:<ol><li><a href='http://www.clazh.com/back-from-the-dead/' rel='bookmark' title='Permanent Link: Back from the dead'>Back from the dead</a></li>
<li><a href='http://www.clazh.com/the-launch-and-a-happy-april-fools-day/' rel='bookmark' title='Permanent Link: The Launch and A Happy April Fool&#8217;s Day'>The Launch and A Happy April Fool&#8217;s Day</a></li>
<li><a href='http://www.clazh.com/top-best-free-wordpress-themes-templates/' rel='bookmark' title='Permanent Link: Part2 Top Ten Best Free Wordpress Themes and Templates'>Part2 Top Ten Best Free Wordpress Themes and Templates</a></li>
<li><a href='http://www.clazh.com/wordpress-launches-free-hosted-stats/' rel='bookmark' title='Permanent Link: Wordpress Launches Free Hosted Stats'>Wordpress Launches Free Hosted Stats</a></li>
<li><a href='http://www.clazh.com/best-customizable-multiple-color-styles-wordpress-themes/' rel='bookmark' title='Permanent Link: Best Customizable Multiple Color Styles Wordpress Themes'>Best Customizable Multiple Color Styles Wordpress Themes</a></li>
</ol></p><hr />
<p><small>© Arpit Jacob for <a href="http://www.clazh.com">Clazh</a>, 2009. |
<a href="http://www.clazh.com/reborn-resurrected-relaunched-reloaded-redesigned/">Permalink</a> |
<a href="http://www.clazh.com/reborn-resurrected-relaunched-reloaded-redesigned/#comments">14 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.clazh.com/reborn-resurrected-relaunched-reloaded-redesigned/&title=Reborn, Resurrected, Relaunched, Reloaded, Redesigned">del.icio.us</a>
<br/>
Catergories: <a href="http://www.clazh.com/category/blogging/" title="View all posts in Blogging" rel="category tag">Blogging</a>,  <a href="http://www.clazh.com/category/web-design/" title="View all posts in Web-Design" rel="category tag">Web-Design</a>  Tags: <a href="http://www.clazh.com/tag/blogging/" rel="tag">Blogging</a>, <a href="http://www.clazh.com/tag/web-design/" rel="tag">Web-Design</a>, <a href="http://www.clazh.com/tag/wordpress/" rel="tag">Wordpress</a><br/> 
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.clazh.com/reborn-resurrected-relaunched-reloaded-redesigned/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>My Web Design Got Ripped</title>
		<link>http://www.clazh.com/my-web-design-got-ripped/</link>
		<comments>http://www.clazh.com/my-web-design-got-ripped/#comments</comments>
		<pubDate>Wed, 26 Dec 2007 16:32:57 +0000</pubDate>
		<dc:creator>Arpit Jacob</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Web-Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Web-Development]]></category>

		<guid isPermaLink="false">http://www.clazh.com/my-web-design-got-ripped/</guid>
		<description><![CDATA[I got a mail from someone named Charles that my Blog Design had been ripped. I wrote it off as hoax, but for a second I was scared that my site might have got hacked or hijacked like David Airey site recently. (Please help him by supporting him in his fight against the domain squatter).
hey [...]]]></description>
			<content:encoded><![CDATA[<p>I got a mail from someone named Charles that my Blog Design had been ripped. I wrote it off as hoax, but for a second I was scared that my site might have got hacked or hijacked like <a href="http://www.davidairey.co.uk/">David Airey</a> site recently. (Please help him by supporting him in his fight against the domain squatter).</p>
<blockquote><p>hey just a heads up, your site got ripped. Its out in the world wide web now.</p></blockquote>
<p>In the evening while catching up with my RSS feeds I noticed a bunch of strange links <a href="http://technorati.com/blogs/clazh.com?reactions">showing up in Technorati</a> and I found a bunch of sites using my theme. Unfortunately for the ripper I am not upset, why you ask? I was going to release the theme this Christmas as a free download but was waiting for the WordPress.com guys to launch the Wordpress marketplace. Since my theme had been approved to be listed on it when it opens up, I was asked not to make it available for download till they launched.  Its been almost a month and the Wordpress.com guys haven&#8217;t got back to me yet. The theme would have made a really good Christmas and New year gift since a huge number of people had requested and begged me to release it. If you guys can be a little more patient I&#8217;ll make it available right after the market place launches.</p>
<blockquote><p>Currently since I haven&#8217;t released the theme it is copyrighted and using it without my permission is illegal. I will be releasing it under a GPL licence after which you are free to do whatever you wish with the theme.</p></blockquote>
<p>As a side note can you help my friend <a href="http://www.tecfre.com/how-do-you-feel-when-your-comment-is-caught-by-a-spam-protector-plugin/">Kanak his comments seem to be going into the spam queue any solutions?</a></p>
<p>A belated Merry Christmas and a Happy New Year.</p>


<p>Related posts:<ol><li><a href='http://www.clazh.com/free-web-design-icons-download-web-development-projects/' rel='bookmark' title='Permanent Link: 10 Free Web Design Icons For Download, Used On This Web Site'>10 Free Web Design Icons For Download, Used On This Web Site</a></li>
<li><a href='http://www.clazh.com/wordpress-to-launch-theme-marketplace-all-themes-to-be-gpl/' rel='bookmark' title='Permanent Link: WordPress To Launch Theme Marketplace, All Themes To be GPL'>WordPress To Launch Theme Marketplace, All Themes To be GPL</a></li>
<li><a href='http://www.clazh.com/clean-a-free-wordpress-theme/' rel='bookmark' title='Permanent Link: Clean A Free Wordpress Theme'>Clean A Free Wordpress Theme</a></li>
<li><a href='http://www.clazh.com/grid-focus-a-free-professional-wordpress-theme/' rel='bookmark' title='Permanent Link: Grid Focus A Free Professional Wordpress Theme'>Grid Focus A Free Professional Wordpress Theme</a></li>
<li><a href='http://www.clazh.com/top-best-beautiful-wordpress-themes-templates/' rel='bookmark' title='Permanent Link: Part3 Top Best Beautiful Wordpress Themes and Templates'>Part3 Top Best Beautiful Wordpress Themes and Templates</a></li>
</ol></p><hr />
<p><small>© Arpit Jacob for <a href="http://www.clazh.com">Clazh</a>, 2007. |
<a href="http://www.clazh.com/my-web-design-got-ripped/">Permalink</a> |
<a href="http://www.clazh.com/my-web-design-got-ripped/#comments">42 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.clazh.com/my-web-design-got-ripped/&title=My Web Design Got Ripped">del.icio.us</a>
<br/>
Catergories: <a href="http://www.clazh.com/category/design/" title="View all posts in Design" rel="category tag">Design</a>,  <a href="http://www.clazh.com/category/web-design/" title="View all posts in Web-Design" rel="category tag">Web-Design</a>,  <a href="http://www.clazh.com/category/wordpress/" title="View all posts in Wordpress" rel="category tag">Wordpress</a>  Tags: <a href="http://www.clazh.com/tag/templates/" rel="tag">Templates</a>, <a href="http://www.clazh.com/tag/web-design/" rel="tag">Web-Design</a>, <a href="http://www.clazh.com/tag/web-development/" rel="tag">Web-Development</a><br/> 
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.clazh.com/my-web-design-got-ripped/feed/</wfw:commentRss>
		<slash:comments>42</slash:comments>
		</item>
		<item>
		<title>IE 8 Is Going To Kick Every Browsers Butt</title>
		<link>http://www.clazh.com/ie-8-is-going-to-kick-every-browsers-butt/</link>
		<comments>http://www.clazh.com/ie-8-is-going-to-kick-every-browsers-butt/#comments</comments>
		<pubDate>Thu, 20 Dec 2007 05:57:20 +0000</pubDate>
		<dc:creator>Arpit Jacob</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web-Design]]></category>
		<category><![CDATA[Web-Development]]></category>
		<category><![CDATA[Web-Standards]]></category>

		<guid isPermaLink="false">http://www.clazh.com/ie-8-is-going-to-kick-every-browsers-butt/</guid>
		<description><![CDATA[Damn just when I was going to do a blog post predicting that the reason why Microsoft is so quiet about IE 8 is because they want to surprise everyone and I was right. This is going to make Opera look really bad. The IE blog latest post says that IE 8 has passed the [...]]]></description>
			<content:encoded><![CDATA[<p>Damn just when I was going to do a blog post predicting that the reason why Microsoft is so quiet about IE 8 is because <a href="http://blogs.msdn.com/ie/archive/2007/12/19/internet-explorer-8-and-acid2-a-milestone.aspx">they want to surprise everyone and I was right</a>. This is going to make Opera look really bad. The IE blog latest post says that IE 8 has passed the ACID2 Test. I predict that other than ACID2 the IE team has a bunch of other tricks up their sleeves. Opera forced them to play one of their Aces. In case you don&#8217;t know what ACID2 is.</p>
<blockquote><p>Acid2 is a test page for web browsers published by The Web Standards Project (WaSP). It has been written to help browser vendors make sure their products correctly support features that web designers would like to use. These features are part of existing standards but havenâ€™t been interoperably supported by major browsers. Acid2 tries to change this by challenging browsers to render Acid2 correctly before shipping.</p>
<p>Acid2 is a complex web page. It uses features that are not in common use yet, because of lack of support, and it crams many tests into one page. The aim has been to make it simple for developers and users to check if a browser passes the test. If it does, the smiley face on the left will appear. If something is wrong, the face will be distorted and/or shown partly in red.</p></blockquote>
<p>Here are a couple of things I predict about IE 8.</p>
<ul>
<li>A Much faster rendering engine for Both JavaScript and Web Pages.</li>
<li>Cooler, Skinnable and Better User Interface.</li>
<li>Better Extensibility like Firefox.</li>
<li>Will use lesser memory.</li>
<li>More Security Features.</li>
</ul>
<p><a href="http://digg.com/microsoft/Internet_Explorer_8_passes_ACID2_test?t=11419398#c11419398">This comment </a>on DIGG says it all.</p>
<blockquote><p>Wow, a story about Microsoft and Internet Explorrer and most all of the comments in here are positive? I Never thought I&#8217;d see that!</p></blockquote>


<p>Related posts:<ol><li><a href='http://www.clazh.com/opera-sucks-at-least-some-people-have-sense/' rel='bookmark' title='Permanent Link: Opera Sucks, At Least Some People Have Sense'>Opera Sucks, At Least Some People Have Sense</a></li>
<li><a href='http://www.clazh.com/download-internet-explorer-8-beta-new-features-in-ie8/' rel='bookmark' title='Permanent Link: Download Internet Explorer 8 Beta, New Features In IE8'>Download Internet Explorer 8 Beta, New Features In IE8</a></li>
<li><a href='http://www.clazh.com/new-css-30-features-that-web-designers-would-love/' rel='bookmark' title='Permanent Link: New CSS 3.0 Features That Web Designers Would Love To Play With'>New CSS 3.0 Features That Web Designers Would Love To Play With</a></li>
<li><a href='http://www.clazh.com/wow-apple-releases-safari-browser-for-windows/' rel='bookmark' title='Permanent Link: Wow Apple Releases Safari Browser For Windows'>Wow Apple Releases Safari Browser For Windows</a></li>
<li><a href='http://www.clazh.com/microsofts-secret-run-office-2007-in-any-browser-and-kill-google-docs-zoho/' rel='bookmark' title='Permanent Link: Microsoft’s Secret Run Office 2007 in any Browser And Kill Google Docs, Zoho'>Microsoft’s Secret Run Office 2007 in any Browser And Kill Google Docs, Zoho</a></li>
</ol></p><hr />
<p><small>© Arpit Jacob for <a href="http://www.clazh.com">Clazh</a>, 2007. |
<a href="http://www.clazh.com/ie-8-is-going-to-kick-every-browsers-butt/">Permalink</a> |
<a href="http://www.clazh.com/ie-8-is-going-to-kick-every-browsers-butt/#comments">14 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.clazh.com/ie-8-is-going-to-kick-every-browsers-butt/&title=IE 8 Is Going To Kick Every Browsers Butt">del.icio.us</a>
<br/>
Catergories: <a href="http://www.clazh.com/category/microsoft/" title="View all posts in Microsoft" rel="category tag">Microsoft</a>,  <a href="http://www.clazh.com/category/software/" title="View all posts in Software" rel="category tag">Software</a>,  <a href="http://www.clazh.com/category/web-design/" title="View all posts in Web-Design" rel="category tag">Web-Design</a>  Tags: <a href="http://www.clazh.com/tag/web-design/" rel="tag">Web-Design</a>, <a href="http://www.clazh.com/tag/web-development/" rel="tag">Web-Development</a>, <a href="http://www.clazh.com/tag/web-standards/" rel="tag">Web-Standards</a><br/> 
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.clazh.com/ie-8-is-going-to-kick-every-browsers-butt/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Opera Sucks, At Least Some People Have Sense</title>
		<link>http://www.clazh.com/opera-sucks-at-least-some-people-have-sense/</link>
		<comments>http://www.clazh.com/opera-sucks-at-least-some-people-have-sense/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 15:47:36 +0000</pubDate>
		<dc:creator>Arpit Jacob</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web-Design]]></category>
		<category><![CDATA[Web-Development]]></category>
		<category><![CDATA[Web-Standards]]></category>

		<guid isPermaLink="false">http://www.clazh.com/opera-sucks-at-least-some-people-have-sense/</guid>
		<description><![CDATA[Everybody loves to hate Microsoft. If you don&#8217;t thrash talk about Microsoft or IE you are not considered a Uber Web Geek. Opera took upon it self to sue Microsoft by complaining to the European Commission and force them to follow web standards. And its the lamest thing they could do. At least some people [...]]]></description>
			<content:encoded><![CDATA[<p>Everybody loves to hate Microsoft. If you don&#8217;t thrash talk about Microsoft or IE you are not considered a Uber Web Geek. Opera <a href="http://people.opera.com/howcome/2007/msft/">took upon it self to sue Microsoft by complaining to the European Commission and force them to follow web standards</a>. And its the lamest thing they could do. At least some people <a href="http://meyerweb.com/eric/thoughts/2007/12/13/bad-timing/">have</a> <a href="http://www.quirksmode.org/blog/archives/2007/12/operas_antitrus.html">sense</a> and are not taking sides.</p>
<p><em>Today we have taken a stand. Opera has </em><a href="http://www.opera.com/pressreleases/en/2007/12/13/"><em>filed a formal complaint</em></a><em> with the European Commission to force Microsoft to support open Web standards in its Web browser, Internet Explorer. We believe that Microsoft has harmed Web standards by refusing to support them; Microsoft often participates in creating Web standards, promoting them, and even promising to implement them. Despite their talent, however, they refuse to support Web standards correctly. For example, Internet Explorer is the only modern Web browser that </em><a href="http://en.wikipedia.org/wiki/Acid2"><em>does not</em></a><em> support </em><a href="http://www.webstandards.org/acid2"><em>Acid2</em></a><em>.</em></p>
<p>Sure IE 7 doesn&#8217;t have the best support for Web Standards but at least Microsoft is trying. Hey I am web designer and I hate IE. But lets not forget that IE was at one time the most advanced and sophisticated Browser heck IE was the first to implement the concept of AJAX.</p>
<p><em>The XMLHttpRequest concept was originally developed by Microsoft as part of Outlook Web Access 2000, as a server side API call. At the time, it was not a standards-based web client feature; however, de facto support for it was implemented by many major web browsers. The Microsoft implementation is called XMLHTTP. It has been available since the introduction of Internet Explorer 5.0[5] and is accessible via JScript, VBScript and other scripting languages supported by IE browsers.</em></p>
<p>I like it how <a href="http://www.quirksmode.org/blog/archives/2007/12/operas_antitrus.html">Peter-Paul Koch, puts it</a>.</p>
<p><em>Nonetheless, I have to point out the potentially disastrous consequences of &#8220;asking the European Commission to require Microsoft to follow fundamental and open Web standards accepted by the Web-authoring communities.&#8221;</em></p>
<p><em>Opera is begging a political body to take control of web standards.</em></p>
<p>Also I find <a href="http://meyerweb.com/eric/thoughts/2007/12/13/bad-timing/">Eric Meyers Response pretty awesome</a>.</p>
<p><em>Look, the time to file this motion and make this appeal was in 2005, when Internet Explorer had been dead in the water for years and it was genuinely holding back web design. Then thereâ€™d have been a case to make. When IE7 came out in late 2006, it wasnâ€™t a great leap forward for web development, but it did bring IE more or less in line with where browsers were at the timeâ€”which was, frankly, a pretty large leap. After all, they were doing five years of catch-up with a pretty small team. Now we have IE8 in development, and there is a real chance that it could push standards support forward in a significant way.</em></p>
<p>Its pretty clear Opera has a <a href="http://www.stuffandnonsense.co.uk/malarkey/more/css_unworking_group/">clear conflict of interest</a>.</p>
<p><em>As has been widely reported, software developer Opera, has filed an antitrust complaint with the EU to force Microsoft to support open Web standards in Internet Explorer and to carry alternative browsers pre-installed on Windows. What has not yet been discussed is the devastating and destabilizing effect that this will undoubtably have on the development of future CSS.</em></p>
<p><em>Following Opera&#8217;s action, today I am calling on Bert Bos, chairman of the CSS Working Group, and those higher up within the W3C including Sir Tim Berners Lee, to immediately disband the CSS Working Group in its current form. I am asking for immediate action to be taken on the formulation of a replacement CSS Working Group that will include new members who are not the representatives of browser vendors. Instead the new CSS Working Group should consist of people, including some who already serve on the group, who are committed to seeing the development of CSS3 succeed because that is central to the success of our profession. This new group need not start from scratch, but should instead build uponn the significant advances and hard work of the current CSS Working Group. </em></p>


<p>Related posts:<ol><li><a href='http://www.clazh.com/ie-8-is-going-to-kick-every-browsers-butt/' rel='bookmark' title='Permanent Link: IE 8 Is Going To Kick Every Browsers Butt'>IE 8 Is Going To Kick Every Browsers Butt</a></li>
<li><a href='http://www.clazh.com/firefox-30-has-inbuilt-support-for-video-svg-is-pretty-cool/' rel='bookmark' title='Permanent Link: FireFox 3.0 And Opera Have Inbuilt Support For Video, SVG Is Pretty Cool'>FireFox 3.0 And Opera Have Inbuilt Support For Video, SVG Is Pretty Cool</a></li>
<li><a href='http://www.clazh.com/download-internet-explorer-8-beta-new-features-in-ie8/' rel='bookmark' title='Permanent Link: Download Internet Explorer 8 Beta, New Features In IE8'>Download Internet Explorer 8 Beta, New Features In IE8</a></li>
<li><a href='http://www.clazh.com/why-are-most-open-source-application-and-websites-so-fugly/' rel='bookmark' title='Permanent Link: Why Are Most Open Source Application And Websites So FUgly?'>Why Are Most Open Source Application And Websites So FUgly?</a></li>
<li><a href='http://www.clazh.com/the-launch-and-a-happy-april-fools-day/' rel='bookmark' title='Permanent Link: The Launch and A Happy April Fool&#8217;s Day'>The Launch and A Happy April Fool&#8217;s Day</a></li>
</ol></p><hr />
<p><small>© Arpit Jacob for <a href="http://www.clazh.com">Clazh</a>, 2007. |
<a href="http://www.clazh.com/opera-sucks-at-least-some-people-have-sense/">Permalink</a> |
<a href="http://www.clazh.com/opera-sucks-at-least-some-people-have-sense/#comments">4 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.clazh.com/opera-sucks-at-least-some-people-have-sense/&title=Opera Sucks, At Least Some People Have Sense">del.icio.us</a>
<br/>
Catergories: <a href="http://www.clazh.com/category/internet/" title="View all posts in Internet" rel="category tag">Internet</a>,  <a href="http://www.clazh.com/category/software/" title="View all posts in Software" rel="category tag">Software</a>,  <a href="http://www.clazh.com/category/web-design/" title="View all posts in Web-Design" rel="category tag">Web-Design</a>  Tags: <a href="http://www.clazh.com/tag/web-design/" rel="tag">Web-Design</a>, <a href="http://www.clazh.com/tag/web-development/" rel="tag">Web-Development</a>, <a href="http://www.clazh.com/tag/web-standards/" rel="tag">Web-Standards</a><br/> 
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.clazh.com/opera-sucks-at-least-some-people-have-sense/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>New CSS 3.0 Features That Web Designers Would Love To Play With</title>
		<link>http://www.clazh.com/new-css-30-features-that-web-designers-would-love/</link>
		<comments>http://www.clazh.com/new-css-30-features-that-web-designers-would-love/#comments</comments>
		<pubDate>Fri, 24 Aug 2007 01:41:11 +0000</pubDate>
		<dc:creator>Arpit Jacob</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Web-Design]]></category>
		<category><![CDATA[Web-Development]]></category>
		<category><![CDATA[Web-Standards]]></category>

		<guid isPermaLink="false">http://www.clazh.com/new-css-30-features-that-web-designers-would-love/</guid>
		<description><![CDATA[While the the W3C seem to be taking forever to implement new web standards and seem happy sitting on their butts forever without moving forward. Here are a bunch of CSS 3.0 proposals that Web Designers would go nuts over if ever they are implemented. I give them time till  2999 to implement them, [...]]]></description>
			<content:encoded><![CDATA[<p>While the the W3C seem to be <a href="http://www.molly.com/2007/08/11/dear-w3c-dear-wasp/">taking forever to implement</a> new web standards and <a href="http://www.zeldman.com/2007/08/15/what-crisis/">seem happy sitting on their butts forever without moving</a> forward. Here are a bunch of CSS 3.0 proposals that Web Designers would go nuts over if ever they are implemented. I give them time till  2999 to implement them, at the rate things are going in the W3C. I saw the original post here on <a title="http://www.anieto2k.com/2007/08/22/tecnicas-css3-que-estoy-deseando-que-lleguen-a-mis-manos/" href="http://www.anieto2k.com/2007/08/22/tecnicas-css3-que-estoy-deseando-que-lleguen-a-mis-manos/">anieto2k</a> blog but since I don&#8217;t understand what language it is written in, I <a href="http://www.css3.info/preview/">decided to translate it</a>. By the way Opera 9.5 has full support for CSS 3.0</p>
<h2>Multi Columns</h2>
<p>Currently when you create a multi columned layout i.e 2 column or 3 column layout you need to specify individual and separate DIV HTML elements to achieve the desired effect. But in CSS 3.0 you can achieve this with a single CSS declaration like this<br />
<code><br />
DIV {width: 400px;column-count: 4;<br />
column-width: 100px;<br />
column-gap: 10px;column-rule: none;<br />
}<br />
</code><br />
This is actually possible in FireFox but it is not Standard CSS 3.0 you&#8217;ll need to use <a href="http://www.css3.info/preview/multi-column-layout.html">FireFox Specify code in your CSS</a> to achieve the effect. Example is given below.<br />
<code><br />
-moz-column-count: 3;<br />
-moz-column-gap: 1em;<br />
-webkit-column-count: 3;<br />
-webkit-column-gap: 1em;<br />
</code></p>
<h2>Multi-Background</h2>
<p>Currently it is not possible to put multiple background Images to the same HTML element but in CSS 3.0 you can easily do this.<br />
<code><br />
background: url('http://www.clazh.com/images/body-top.gif')<br />
top left no-repeat,<br />
url('http://www.clazh.com/images/banner_fresco.jpg')<br />
top 11px no-repeat,<br />
url('http://www.clazh.com/images/body-bottom.gif')<br />
bottom left no-repeat,<br />
url('http://www.clazh.com/images/body-middle.gif')<br />
left repeat-y;<br />
</code></p>
<h2>Zebra Tables</h2>
<p>You can easily do zebra table without the need for JavaScript or putting CSS Classes on individual Table Rows to give alternate colours.<br />
<code><br />
tr:nth-child(2n+1) /* represents every odd row of a HTML table */;<br />
tr:nth-child(odd)  /* same */<br />
tr:nth-child(2n)   /* represents every even row of a HTML table */<br />
tr:nth-child(even) /* same *//* Alternate paragraph colours in CSS */<br />
p:nth-child(4n+1) { color: navy; }<br />
p:nth-child(4n+2) { color: green; }<br />
p:nth-child(4n+3) { color: maroon; }<br />
p:nth-child(4n+4) { color: purple; }<br />
</code></p>
<h2>Rounded Corners</h2>
<p>How about the ability to render the ever popular and so called Web 2.0 rounded Corners for a box(html Element) with just a single line of CSS.<br />
<code><br />
-webkit-border-radius: 5px;<br />
-moz-border-radius: 5px;<br />
-khtml-border-radius: 5px;<br />
border-radius: 5px;<br />
</code></p>
<h2>Opacity</h2>
<p>Currently almost all browsers support their own version and syntax for opacity. Here is the CSS 3.0 Standard code for opacity<br />
<code><br />
/* IE 8 */<br />
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";<br />
/* IE 5-7 */<br />
filter: alpha(opacity=50);<br />
/* Netscape */<br />
-moz-opacity: 0.5;<br />
/* Safari 1.x */<br />
-khtml-opacity: 0.5;<br />
/* Good browsers */<br />
opacity: 0.5;<br />
</code></p>
<h2>Resize</h2>
<p>Ability to resize a HTML Element automatically<br />
<code><br />
div.resize {width: 100px;<br />
height: 100px;<br />
border: 1px solid;<br />
resize: both;<br />
overflow: auto;<br />
}<br />
</code></p>
<h2>Text Effects</h2>
<p>Text effects like drop shadow and Text Overflow.<br />
<code><br />
color: #fff;background-color: #fff;<br />
text-shadow: 2px 2px 2px #000;<br />
text-overflow: ellipsis-word;<br />
</code></p>


<p>Related posts:<ol><li><a href='http://www.clazh.com/download-internet-explorer-8-beta-new-features-in-ie8/' rel='bookmark' title='Permanent Link: Download Internet Explorer 8 Beta, New Features In IE8'>Download Internet Explorer 8 Beta, New Features In IE8</a></li>
<li><a href='http://www.clazh.com/cool-hidden-features-in-wordpress-21-editor/' rel='bookmark' title='Permanent Link: Cool Hidden Features In Wordpress 2.1 Editor'>Cool Hidden Features In Wordpress 2.1 Editor</a></li>
</ol></p><hr />
<p><small>© Arpit Jacob for <a href="http://www.clazh.com">Clazh</a>, 2007. |
<a href="http://www.clazh.com/new-css-30-features-that-web-designers-would-love/">Permalink</a> |
<a href="http://www.clazh.com/new-css-30-features-that-web-designers-would-love/#comments">16 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.clazh.com/new-css-30-features-that-web-designers-would-love/&title=New CSS 3.0 Features That Web Designers Would Love To Play With">del.icio.us</a>
<br/>
Catergories: <a href="http://www.clazh.com/category/featured/" title="View all posts in Featured" rel="category tag">Featured</a>,  <a href="http://www.clazh.com/category/web-design/" title="View all posts in Web-Design" rel="category tag">Web-Design</a>  Tags: <a href="http://www.clazh.com/tag/web-design/" rel="tag">Web-Design</a>, <a href="http://www.clazh.com/tag/web-development/" rel="tag">Web-Development</a>, <a href="http://www.clazh.com/tag/web-standards/" rel="tag">Web-Standards</a><br/> 
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.clazh.com/new-css-30-features-that-web-designers-would-love/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Best Three Column WordPress Themes And More</title>
		<link>http://www.clazh.com/best-three-column-wordpress-themes-and-more/</link>
		<comments>http://www.clazh.com/best-three-column-wordpress-themes-and-more/#comments</comments>
		<pubDate>Tue, 21 Aug 2007 01:43:51 +0000</pubDate>
		<dc:creator>Arpit Jacob</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Web-Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://www.clazh.com/best-three-column-wordpress-themes-and-more/</guid>
		<description><![CDATA[Its been a while since I did my Best WordPress theme series. For this series I decided top focus on 3 Column themes I&#8217;ve been hunting around for the best 3 column themes in the past month. At the same time I came across a few more beautiful themes. So I Decided to combine them [...]]]></description>
			<content:encoded><![CDATA[<p>Its been a while since I did my Best WordPress theme series. For this series I decided top focus on 3 Column themes I&#8217;ve been hunting around for the best 3 column themes in the past month. At the same time I came across a few more beautiful themes. So I Decided to combine them into a single post rather than review them separately.</p>
<p>So here are the list of some of the beautiful, professional, 3 column WordPress Themes that I could find.</p>
<h2>Beautiful Three column WordPress Themes</h2>
<h3>Illacrimo</h3>
<p>A beautiful three column theme called Illacrimo. Created by Design Disease. It has a number of  Supporting Plugins like: Gravatar FlickrRSS Pagenavi. <a href="http://wp-themes.designdisease.com/free-wordpress-themes/">Download and Demo Here</a></p>
<p><img src="http://i150.photobucket.com/albums/s97/clazh/illacrimoCustom.png" title="Illacrimo WordPress Template" alt="Illacrimo WordPress Template" height="346" width="575" /></p>
<h3>Feel The Freedom</h3>
<p>A Colorful theme that claims to incorporate Web 2.0 design elements. <a href="http://web2themes.com/2007/06/18/feel-the-freedom-theme-release/">Download and Demo Here</a></p>
<p><img src="http://i150.photobucket.com/albums/s97/clazh/feel_the_FreedomCustom.png" title="Feel The Freedom Free WordPress Theme" alt="Feel The Freedom Free WordPress Theme" height="346" width="575" /></p>
<h2>Mezzo</h2>
<p><a href="http://wpthemesplugin.com/mezzo-3-column-wordpress-theme/">Download and Demo Here<br />
</a><br />
<img src="http://i150.photobucket.com/albums/s97/clazh/mezzo.png" title="Free WordPress Web2.0 Theme" alt="Free WordPress Web2.0 Theme" height="346" width="575" /></p>
<h2>Brown And Dark 3 column WordPress Themes</h2>
<h3>Zeke</h3>
<p>If you love brown and crisp typography then this WordPress template is for you. I love every bit of it. lots of space to put you widgets in the sidebar. <a href="http://www.solostream.com/2007/06/17/worpdress-blog-theme-zeke-10-widgets/">Download and Demo Here</a></p>
<p><img src="http://i150.photobucket.com/albums/s97/clazh/zekeCustom.png" title="Zeke best WordPress dark template" alt="Zeke best WordPress dark template" height="346" width="575" /></p>
<h2>Clean 3 Column Themes</h2>
<h3>Alexified</h3>
<p>Clean Theme Though the font are a bit micro sized. <a href="http://www.alexallied.com/alexified">Download and Demo here</a></p>
<p><img src="http://i150.photobucket.com/albums/s97/clazh/AlexifiedCustom.png" title="Clean WordPress theme" alt="Clean WordPress theme" height="346" width="575" /></p>
<h3>Moo-Point</h3>
<p>Super clean minimalist theme Also placed second in the SandBox theme competition. <a href="http://iamww.com/2007/07/moo-point-wordpress-theme-version-11-released/">Download and Demo Here</a></p>
<p><img src="http://i150.photobucket.com/albums/s97/clazh/moopointCustom.png" title="Clean WordPress theme" alt="Clean WordPress theme" height="346" width="575" /></p>
<h3>Silhouette</h3>
<p>Clean Professional 3 columned theme. <a href="http://www.briangardner.com/themes/silhouette-wordpress-theme.htm">Download and Demo Here</a></p>
<p><img src="http://i150.photobucket.com/albums/s97/clazh/SilhouetteCustom.png" /></p>
<h3>SubStyle</h3>
<p><a href="http://www.tuggo.org/substyle/">Download and Demo Here</a></p>
<p><img src="http://i150.photobucket.com/albums/s97/clazh/SubStyleCustom.png" title="SubStyle WordPress White Template" alt="SubStyle WordPress White Template" height="346" width="575" /></p>
<h3>NetWorker</h3>
<p>Clean red and white theme. <a href="http://antbag.com/category/wordpress-themes/">Download and demo here</a></p>
<p><img src="http://i150.photobucket.com/albums/s97/clazh/networkerCustom.png" /></p>
<h3>Blog Oh Blog</h3>
<p><a href="http://www.blogohblog.com/wordpress-theme-blog-oh-blog/">Download and demo here</a></p>
<p><img src="http://i150.photobucket.com/albums/s97/clazh/Blog_Oh_BlogCustom.png" /></p>
<h2>A few more Beautiful WordPress theme</h2>
<h3>Elixir</h3>
<p>Dark theme pure eye candy. Get the theme in various colored flavors. <a href="http://whalesalad.com/2007/07/23/elixir/">Download and demo here</a></p>
<p><img src="http://i150.photobucket.com/albums/s97/clazh/ElixirCustom.png" title="Dark beautiful WordPress theme" alt="Dark beautiful WordPress theme" height="346" width="575" /></p>
<h3>Feather</h3>
<p>I love this Theme. I am a sucker for bright colors this theme is really beautiful. <a href="http://www.h4x3d.com/themes/feather/">Download Here</a></p>
<p><img src="http://i150.photobucket.com/albums/s97/clazh/featherCustom.png" title="Feather Bright coloured wordpress theme" alt="Feather Bright coloured wordpress theme" height="346" width="575" /></p>
<h3>Mimbo</h3>
<p>Magazine style layout <a href="http://www.darrenhoyt.com/bio/sandbox/mimbo">Download and demo here</a></p>
<p><img src="http://i150.photobucket.com/albums/s97/clazh/MimboCustom.png" title="Magazine Layout WordPress theme" alt="Magazine Layout WordPress theme" height="346" width="575" /></p>
<h2>Other Notable Three Column WordPress Themes</h2>
<ul>
<li><a href="http://smartr.cn/wordpress/wordpress-theme-js-paper-released.html" title="http://smartr.cn/wordpress/wordpress-theme-js-paper-released.html">JS Paper</a></li>
<li><a href="http://www.mangoorange.com/2007/06/18/i3theme-brothers-left-and-right/" title="http://www.mangoorange.com/2007/06/18/i3theme-brothers-left-and-right/">i3Theme</a></li>
<li><a href="http://www.upstartblogger.com/wordpress-theme-upstart-blogger-modicus" title="http://www.upstartblogger.com/wordpress-theme-upstart-blogger-modicus">Upstart Blogger Modicus</a></li>
<li><a href="http://rockinthemes.com/rockin-web-20-3-column-free-wordpress-theme-released/" title="http://rockinthemes.com/rockin-web-20-3-column-free-wordpress-theme-released/">Rockin Web 2.0</a></li>
<li><a href="http://www.milienzo.com/wordpress-themes/fresco/" title="http://www.milienzo.com/wordpress-themes/fresco/">fresco</a></li>
<li><a href="http://cutline.tubetorial.com/cutline-3-column-theme-now-available/" title="http://cutline.tubetorial.com/cutline-3-column-theme-now-available/">Cutline 3 Column</a></li>
<li><a href="http://deafmusician.com/dm-bloodless/" title="http://deafmusician.com/dm-bloodless/">Dm Bloodless</a></li>
<li><a href="http://www.solostream.com/2007/06/11/wordpress-blog-theme-suhweet-10-widgets/">Suhweet</a></li>
<li><a href="http://www.solostream.com/2007/06/11/wordpress-blog-theme-simplicity-10-widgets/" title="http://www.solostream.com/2007/06/11/wordpress-blog-theme-simplicity-10-widgets/">Simplicity</a></li>
<li><a href="http://www.myokyawhtun.com/2007/07/11/genman-wordpress-theme.html/" title="Genman">Genman</a></li>
<li><a href="http://www.bloggingpro.com/archives/2007/03/21/blogging-pros-theme-released/" title="http://www.bloggingpro.com/archives/2007/03/21/blogging-pros-theme-released/">BloggingPro</a></li>
<li><a href="http://www.deanjrobinson.com/blog/blueberry-for-sandbox/" title="http://www.deanjrobinson.com/blog/blueberry-for-sandbox/">Blueberry</a></li>
<li><a href="http://blog.indiblogger.in/2007/08/indiblogger-theme-for-wordpress/" title="http://blog.indiblogger.in/2007/08/indiblogger-theme-for-wordpress/">Indiblogger</a>(Note Not a Three Column Theme)</li>
</ul>
<p>Want to see more 3 columns Theme check these posts</p>
<p><a href="http://www.wpdesigner.com/2007/06/26/13-double-right-sidebars-wordpress-themes/" title="http://www.wpdesigner.com/2007/06/26/13-double-right-sidebars-wordpress-themes/">http://www.wpdesigner.com/2007/06/26/13-double-right-sidebars-wordpress-themes/</a></p>
<p><a href="http://blog.shankarganesh.com/2007/07/28/3-column-wordpress-themes-my-picks/">http://blog.shankarganesh.com/2007/07/28/3-column-wordpress-themes-my-picks/</a></p>


<p>Related posts:<ol><li><a href='http://www.clazh.com/best-customizable-multiple-color-styles-wordpress-themes/' rel='bookmark' title='Permanent Link: Best Customizable Multiple Color Styles Wordpress Themes'>Best Customizable Multiple Color Styles Wordpress Themes</a></li>
<li><a href='http://www.clazh.com/top-best-free-wordpress-themes-templates/' rel='bookmark' title='Permanent Link: Part2 Top Ten Best Free Wordpress Themes and Templates'>Part2 Top Ten Best Free Wordpress Themes and Templates</a></li>
<li><a href='http://www.clazh.com/coolwater-two-column-free-wordpress-theme/' rel='bookmark' title='Permanent Link: CoolWater Two Column Free WordPress Theme'>CoolWater Two Column Free WordPress Theme</a></li>
<li><a href='http://www.clazh.com/free-magazine-style-wordpress-themes-and-more/' rel='bookmark' title='Permanent Link: Free Magazine Style WordPress Themes And More'>Free Magazine Style WordPress Themes And More</a></li>
<li><a href='http://www.clazh.com/notable-free-premium-wordpress-themes/' rel='bookmark' title='Permanent Link: Notable Free Premium WordPress Themes'>Notable Free Premium WordPress Themes</a></li>
</ol></p><hr />
<p><small>© Arpit Jacob for <a href="http://www.clazh.com">Clazh</a>, 2007. |
<a href="http://www.clazh.com/best-three-column-wordpress-themes-and-more/">Permalink</a> |
<a href="http://www.clazh.com/best-three-column-wordpress-themes-and-more/#comments">36 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.clazh.com/best-three-column-wordpress-themes-and-more/&title=Best Three Column WordPress Themes And More">del.icio.us</a>
<br/>
Catergories: <a href="http://www.clazh.com/category/downloads/" title="View all posts in Downloads" rel="category tag">Downloads</a>,  <a href="http://www.clazh.com/category/web-design/" title="View all posts in Web-Design" rel="category tag">Web-Design</a>,  <a href="http://www.clazh.com/category/wordpress/" title="View all posts in Wordpress" rel="category tag">Wordpress</a>  Tags: <a href="http://www.clazh.com/tag/download/" rel="tag">Download</a>, <a href="http://www.clazh.com/tag/free/" rel="tag">Free</a>, <a href="http://www.clazh.com/tag/templates/" rel="tag">Templates</a>, <a href="http://www.clazh.com/tag/themes/" rel="tag">Themes</a>, <a href="http://www.clazh.com/tag/web-design/" rel="tag">Web-Design</a><br/> 
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.clazh.com/best-three-column-wordpress-themes-and-more/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>SandPress 0.71 WordPress Theme Update</title>
		<link>http://www.clazh.com/sandpress-071-wordpress-theme-update/</link>
		<comments>http://www.clazh.com/sandpress-071-wordpress-theme-update/#comments</comments>
		<pubDate>Sun, 12 Aug 2007 14:09:40 +0000</pubDate>
		<dc:creator>Arpit Jacob</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Web-Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Themes]]></category>

		<guid isPermaLink="false">http://www.clazh.com/sandpress-071-wordpress-theme-update/</guid>
		<description><![CDATA[Update: SandPress For Blogger Has been Released by zonacerebral You can see the demo here.
The SandPress WordPress theme has been updated to Version 0.71 its has a number of minor css fixes, and a few other fixes based on user feedback. I am thinking of moving to a better host soon. My current choices are [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Update:</strong> SandPress For Blogger Has been Released by <a href="http://www.zonacerebral.com/2007/09/nuevo-template-para-blogger-sandpress.html">zonacerebral</a> You can see the demo <a href="http://sandpress-template.blogspot.com/">here</a>.</p>
<p>The SandPress WordPress theme has been updated to Version 0.71 its has a number of minor css fixes, and a few other fixes based on user feedback. I am thinking of moving to a better host soon. My current choices are <strong>Mediatemple.net</strong> and <strong>Bluehost</strong>. If anyone has any suggestions let me know.</p>
<p>Below is the ChangeLog. You can view the <a href="http://www.clazh.com/demo/index.php?wptheme=SandPress" title="SandPress">Demo Here</a></p>
<ul>
<li>Updated To the Latest SandBox Version 0.9.7</li>
<li>Fixed 31st Date-Stamp CSS bug</li>
<li>Fixed Strong Bold text CSS Bug</li>
<li>Removed SandPress Header</li>
<li>Changes To The Menu, Smaller Font</li>
<li>Reduced Header Size (<a href="http://www.clazh.com/wp-admin/Updated%20To%20the%20Latest%20SandBox%20Version%200.9.7">based on SmallPotatoes Feedback</a>)</li>
<li>Search box looks much better now</li>
<li>Prettier Vista fonts for headings</li>
<li>Better Styling for the Calendar Widget</li>
<li>Added Home Link in menu</li>
<li>Max-width for images</li>
</ul>
<h2>Download The Theme</h2>
<p>[download#3#image]</p>


<p>Related posts:<ol><li><a href='http://www.clazh.com/sandpress-free-wordpress-theme/' rel='bookmark' title='Permanent Link: SandPress Free Wordpress Theme'>SandPress Free Wordpress Theme</a></li>
<li><a href='http://www.clazh.com/clean-wordpress-theme-updated-to-version-06/' rel='bookmark' title='Permanent Link: Clean Wordpress Theme Updated To Version 0.6'>Clean Wordpress Theme Updated To Version 0.6</a></li>
<li><a href='http://www.clazh.com/clean-a-free-wordpress-theme/' rel='bookmark' title='Permanent Link: Clean A Free Wordpress Theme'>Clean A Free Wordpress Theme</a></li>
<li><a href='http://www.clazh.com/the-sandpress-theme-won-1st-place-so-what%e2%80%99s-next/' rel='bookmark' title='Permanent Link: The SandPress Theme Won 1ST Place, So What’s Next?'>The SandPress Theme Won 1ST Place, So What’s Next?</a></li>
<li><a href='http://www.clazh.com/coolwater-two-column-free-wordpress-theme/' rel='bookmark' title='Permanent Link: CoolWater Two Column Free WordPress Theme'>CoolWater Two Column Free WordPress Theme</a></li>
</ol></p><hr />
<p><small>© Arpit Jacob for <a href="http://www.clazh.com">Clazh</a>, 2007. |
<a href="http://www.clazh.com/sandpress-071-wordpress-theme-update/">Permalink</a> |
<a href="http://www.clazh.com/sandpress-071-wordpress-theme-update/#comments">39 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.clazh.com/sandpress-071-wordpress-theme-update/&title=SandPress 0.71 WordPress Theme Update">del.icio.us</a>
<br/>
Catergories: <a href="http://www.clazh.com/category/downloads/" title="View all posts in Downloads" rel="category tag">Downloads</a>,  <a href="http://www.clazh.com/category/web-design/" title="View all posts in Web-Design" rel="category tag">Web-Design</a>,  <a href="http://www.clazh.com/category/wordpress/" title="View all posts in Wordpress" rel="category tag">Wordpress</a>  Tags: <a href="http://www.clazh.com/tag/download/" rel="tag">Download</a>, <a href="http://www.clazh.com/tag/templates/" rel="tag">Templates</a>, <a href="http://www.clazh.com/tag/themes/" rel="tag">Themes</a>, <a href="http://www.clazh.com/tag/web-design/" rel="tag">Web-Design</a>, <a href="http://www.clazh.com/tag/wordpress/" rel="tag">Wordpress</a><br/> 
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.clazh.com/sandpress-071-wordpress-theme-update/feed/</wfw:commentRss>
		<slash:comments>39</slash:comments>
		</item>
		<item>
		<title>The SandPress Theme Won 1ST Place, So What’s Next?</title>
		<link>http://www.clazh.com/the-sandpress-theme-won-1st-place-so-what%e2%80%99s-next/</link>
		<comments>http://www.clazh.com/the-sandpress-theme-won-1st-place-so-what%e2%80%99s-next/#comments</comments>
		<pubDate>Tue, 07 Aug 2007 06:34:31 +0000</pubDate>
		<dc:creator>Arpit Jacob</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Web-Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Web-Development]]></category>

		<guid isPermaLink="false">http://www.clazh.com/the-sandpress-theme-won-1st-place-so-what%e2%80%99s-next/</guid>
		<description><![CDATA[Update I Wrote this in a hurry, Corrected some Typos and added list of other winners
When I logged in to my computer this morning, I had completely forgotten that  today at 5:30 AM (Indian Time) the results for the SandBox Design Competition would be announced. I opened FireFox  and my Gmail Manager Extension [...]]]></description>
			<content:encoded><![CDATA[<p>Update I Wrote this in a hurry, Corrected some Typos and added list of other winners</p>
<p>When I logged in to my computer this morning, I had completely forgotten that  today at 5:30 AM (Indian Time) the results for the SandBox Design Competition would be announced. I opened FireFox  and my Gmail Manager Extension showed that I had received more than 25-30 mails  and Comments.</p>
<p>I found out that <a href="http://www.sndbx.org/2007/08/07/and-the-winners-are/">The SandPress Theme won the First Place in the SandBox  WordPress Design Competition</a>. It took a while for it to sink in. I want to  thank the judges and everyone for the support and kind words. There are a few  people I would like to thank specially, while I might not have the time to  comment and take part in discussion in forums (WordPress.Com, sndbx.org), these  are the kind of people who make the WordPress community such a great help and  resource, without such people WordPress would be just another obscure Blogging  Platform.</p>
<ul>
<li><a href="http://www.plaintxt.org/">Scott </a>for running the SandBox Competition in the most professional and  transparent way, providing all possible help and support.</li>
<li><a href="http://archgfx.net/">Adam </a>the CSS Genius for giving me the idea for implementing the Date Stamp  using Images.</li>
<li><a href="http://internetducttape.com/">Engtech </a>for providing the SandBox HTML Dummy code it was a great help.</li>
<li>People in the SandBox Forums and the WordPress.com forums, again it was  Scott, Adam, Engtech and a few dedicated WordPress Community members like  <a href="http://drmikessteakdinner.com/">DrMike</a>, timethief, <a href="http://wank.wordpress.com/">thatgirlagain</a>, atthe404 sorry if I missed out anyone.</li>
</ul>
<p>I have tried my best to personally thank everyone who had some encouragement  and kind words for my me.</p>
<p>A List of other Winners and participants. Copied from scott&#8217;s blog. The numbers indicate the total points. you can also look at<a href="http://spreadsheets.google.com/pub?key=pDjX-BkHzItKl1T-AcU28Vg"> the complete data score here </a></p>
<ol>
<li><a href="http://www.sndbx.org/results/designs/moo-point/">Moo-Point</a> by <a href="http://iamww.com/">Will Wilkins</a> 23 <strong>Second place</strong></li>
<li><a href="http://www.sndbx.org/results/designs/prima/">Prima</a> <a href="http://www.sunaryohadi.info/">Sunaryo Hadi</a> 19 <strong>Third place</strong></li>
<li><a href="http://www.sndbx.org/results/designs/essay/">Essay</a> <a href="http://upperfortstewart.com/">Ian Stewart</a> 15 <strong>Runner-up</strong></li>
<li><a href="http://www.sndbx.org/results/designs/tiffany-blue/">Tiffany  Blue</a> <a href="http://stellify.net/">Ia Lucero</a> 10 <strong>Runner-up</strong></li>
<li><a href="http://www.sndbx.org/results/designs/shades-of-gray/">Shades of  Gray</a> <a href="http://lesliefranke.com/">Leslie Franke</a> 10 <strong>Runner-up</strong></li>
<li><a href="http://www.sndbx.org/results/designs/diurnal/">Diurnal</a> <a href="http://not-that-ugly.co.uk/">Carolyn Smith</a> 9</li>
<li><a href="http://www.sndbx.org/results/designs/milkia/">Milkia</a> <a href="http://www.vidablog.com/">Christian Betancourt</a> 8</li>
<li><a href="http://www.sndbx.org/results/designs/oriole/">Oriole</a> Jason  Porritt 8</li>
<li><a href="http://www.sndbx.org/results/designs/mix/">MIX</a> <a href="http://www.jauhari.net/">Jauhari Nurudin</a> 6</li>
<li><a href="http://www.sndbx.org/results/designs/blueberry/">Blueberry</a> <a href="http://deanjrobinson.com/">Dean&lt; Robinson</a> 5</li>
<li><a href="http://www.sndbx.org/results/designs/walk-in-the-shadows/">Walk in  the Shadows</a> <a href="http://archgfx.net/">Adam Freetly</a> 4</li>
<li><a href="http://www.sndbx.org/results/designs/scrappr/">Scrappr</a> <a href="http://www.gordonbrander.com/">Gordon Brander</a> 4</li>
<li><a href="http://www.sndbx.org/results/designs/hourglass/">Hourglass</a> <a href="http://www.morangodesign.com/">Daniela Risse</a> 4</li>
<li><a href="http://www.sndbx.org/results/designs/sakeena/">Sakeena</a> <a href="http://www.shaziamistry.com/">Shazia Mistry</a> 3</li>
<li><a href="http://www.sndbx.org/results/designs/oranges/">Oranges</a> <a href="http://o.rang.es/">Chris V.</a> 3</li>
<li><a href="http://www.sndbx.org/results/designs/the-blue-butterfly/">The Blue  Butterfly</a> <a href="http://not-that-ugly.co.uk/">Carolyn Smith</a> 2</li>
<li><a href="http://www.sndbx.org/results/designs/takimata/">Takimata</a> <a href="http://www.upstartblogger.com/">Robert Ellis</a> 2</li>
<li><a href="http://www.sndbx.org/results/designs/picnic/">Picnic</a> <a href="http://not-that-ugly.co.uk/">Carolyn Smith</a> 1</li>
<li><a href="http://www.sndbx.org/results/designs/chocolate-vanilla/">Chocolate  Vanilla</a> <a href="http://geoffbrady.net/">Stephen James Broughton</a> 1</li>
</ol>
<h2>So what happens next with The SandPress WordPress Theme?</h2>
<p>I will continue  to support the SandPress Theme. Here is a mini Road Map</p>
<h3> Current Goals</h3>
<ul>
<li> Bug  Fixes</li>
<li> Side Bar Content and Widgets Needs more styling for various  widgets.</li>
<li> For the Date Stamp on 31st the Image doesn&#8217;t show up.</li>
<li> Remove The  SandPress Header or show people how to do it.</li>
<li> Content Formatting Bugs example  Bold or the strong tag doen&#8217;t show up properly</li>
</ul>
<h3>Future Goals</h3>
<ul>
<li> Move The SandPress Code to Google Code.</li>
<li>Get Feeback from the community for new Features.</li>
<li>Launch a forum for support and discussions.</li>
<li> Launch  SandPress.com</li>
<li> SandPress Candies (Different Colour Schemes)</li>
<li> Comment Box  needs to be made flexible i.e. it expands if there are more fields.</li>
<li> Support  for Popular plugins while remaining backward compatible with SandPress.</li>
</ul>
<h3>A few things I am debating.</h3>
<ul>
<li>While three columns are great some people  prefer 2 columns with a 780px width. I am thinking of making a two column version too, with a large  footer.</li>
<li> I don&#8217;t like the semantic structure that SandBox is following .i.e.  h1 for blog name and h3 in the side bar. I prefer to follow what <a href="http://www.pearsonified.com/2007/04/definitive-guide-to-semantic-markup.php">Chris Pearson</a> has  outlined. But this means I need to break away from the SandBox.</li>
</ul>
<p>So the competion may be over but I am not done yet with SandPress, <strong>in the end</strong> it has a  lot of <strong>hidden potential</strong> its just <strong>waiting to be discovered</strong> ;)</p>


<p>Related posts:<ol><li><a href='http://www.clazh.com/sandpress-071-wordpress-theme-update/' rel='bookmark' title='Permanent Link: SandPress 0.71 WordPress Theme Update'>SandPress 0.71 WordPress Theme Update</a></li>
<li><a href='http://www.clazh.com/sandpress-free-wordpress-theme/' rel='bookmark' title='Permanent Link: SandPress Free Wordpress Theme'>SandPress Free Wordpress Theme</a></li>
<li><a href='http://www.clazh.com/a-little-about-me-and-the-sandpress-theme/' rel='bookmark' title='Permanent Link: A little About Me And The SandPress Theme'>A little About Me And The SandPress Theme</a></li>
<li><a href='http://www.clazh.com/sandbox-themes-sneak-preview-which-are-your-favorites/' rel='bookmark' title='Permanent Link: SandBox Themes Sneak Preview, Which are Your Favorites?'>SandBox Themes Sneak Preview, Which are Your Favorites?</a></li>
<li><a href='http://www.clazh.com/wordpress-themes-and-plugins-competitions/' rel='bookmark' title='Permanent Link: Wordpress Themes and Plugins Competitions'>Wordpress Themes and Plugins Competitions</a></li>
</ol></p><hr />
<p><small>© Arpit Jacob for <a href="http://www.clazh.com">Clazh</a>, 2007. |
<a href="http://www.clazh.com/the-sandpress-theme-won-1st-place-so-what%e2%80%99s-next/">Permalink</a> |
<a href="http://www.clazh.com/the-sandpress-theme-won-1st-place-so-what%e2%80%99s-next/#comments">36 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://www.clazh.com/the-sandpress-theme-won-1st-place-so-what%e2%80%99s-next/&title=The SandPress Theme Won 1ST Place, So What’s Next?">del.icio.us</a>
<br/>
Catergories: <a href="http://www.clazh.com/category/downloads/" title="View all posts in Downloads" rel="category tag">Downloads</a>,  <a href="http://www.clazh.com/category/web-design/" title="View all posts in Web-Design" rel="category tag">Web-Design</a>,  <a href="http://www.clazh.com/category/wordpress/" title="View all posts in Wordpress" rel="category tag">Wordpress</a>  Tags: <a href="http://www.clazh.com/tag/templates/" rel="tag">Templates</a>, <a href="http://www.clazh.com/tag/web-design/" rel="tag">Web-Design</a>, <a href="http://www.clazh.com/tag/web-development/" rel="tag">Web-Development</a><br/> 
</small></p>]]></content:encoded>
			<wfw:commentRss>http://www.clazh.com/the-sandpress-theme-won-1st-place-so-what%e2%80%99s-next/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
	</channel>
</rss>
