<?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>Antonio Wells. Web &#38; Multimedia Designer</title>
	<atom:link href="http://www.antoniowells.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.antoniowells.com</link>
	<description>The Life and Times of a Web &#38; Multimedia Designer</description>
	<lastBuildDate>Tue, 15 Dec 2009 13:38:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>301 Redirect NON-WWW to WWW in IIS the Easy Way!</title>
		<link>http://www.antoniowells.com/301-redirect-non-www-to-www-in-iis-the-easy-way/</link>
		<comments>http://www.antoniowells.com/301-redirect-non-www-to-www-in-iis-the-easy-way/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 13:37:47 +0000</pubDate>
		<dc:creator>Antonio Wells</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[IIS]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[Web Servers]]></category>
		<category><![CDATA[301 Redirects]]></category>
		<category><![CDATA[UrlRewritingNet]]></category>
		<category><![CDATA[Windows Server]]></category>

		<guid isPermaLink="false">http://www.antoniowells.com/?p=526</guid>
		<description><![CDATA[It seems the topic is very common among .NET professionals yet there are many convoluted ways to achieve it. Say you want to redirect all web traffic from NON-WWW to WWW or WWW to NON-WWW in IIS, or create search engine friendly URLs&#8230; It took me almost 3 months (off and on) trying to accomplish [...]]]></description>
			<content:encoded><![CDATA[<p>It seems the topic is very common among .NET professionals yet there are many convoluted ways to achieve it. Say you want to redirect all web traffic from <strong>NON-WWW to WWW or WWW to NON-WWW</strong> in IIS, or create search engine friendly URLs&#8230; It took me almost 3 months <em>(off and on)</em> trying to accomplish the task of EASILY performing 301 redirects on an IIS web server. <img src='http://www.antoniowells.com/wp-includes/images/smilies/icon_mad.gif' alt=':mad:' class='wp-smiley' /><br />
<span id="more-526"></span><br />
<em>Here&#8217;s a list of them:</em></p>
<h3>ISAPI Extensions</h3>
<p>You may even ran across developers mentioning in classic ASP, you could rewrite ISAPI extensions. Well, this is ASP.NET and there&#8217;s better ways.</p>
<h3>Create 2 Virtual Directories in IIS</h3>
<p>Where you create a virtual directory for NON-WWW and WWW. Adding a Host Header of &#8220;www.site.com&#8221; for the WWW version, no Host Header for the NON-WWW, yet in the &#8220;Home Directory&#8221; tab of the Properties for that site; important to enter &#8220;http://www.site.com$S$Q&#8221; <em>(note the &#8220;$S$Q&#8221; which ensure correct redirection of all other pages beside the homepage)</em> check &#8220;The exact URL entered above&#8221; and &#8220;A permanent redirection for this resource&#8221;. This works, yet it can get sloppy if your organization hosts many websites on a one web server. And this does not solve the problem of SEO friendly URLs</p>
<h3>Manually creating Files or Directories to Redirect</h3>
<p><em>Uuuuugh</em>. This is the worse solution I had to resort to at one point. As not to be penalized by search engines for 404 errors due to upgrading our website and no longer containing one to one links, I had to create folders and sometimes files on the web server, then similar to the method above, manually create permanent redirects in IIS.</p>
<h3>Using ISAPI Rewrite</h3>
<p>I&#8217;ve seen many developers recommend this product, tried the free version and just couldn&#8217;t get it to work. It&#8217;s a simple install on the web server and supposedly an edit of a httpd.ini file yet I had no luck&#8230; again some don&#8217;t have the luxury of installing applications on production web servers.</p>
<p>Apache web servers easily accomplish this via .htaccess file placed in the root of the web application. The purpose of this article is to hopefully offer a similar, clear and easy way to simulate an .htaccess file for IIS.</p>
<hr />
<h2>The Problem:</h2>
<ul>
<li><a href="http://www.webpronews.com/topnews/2005/09/28/how-to-set-up-a-redirect-on-iis-nonwww-domain-name-to-www-domain-name" title="Too many methods" target="_blank">Too many methods</a> loosely explained by developers on their blogs.</li>
<li>Many don&#8217;t have the luxury to have access to the IIS management tool on the server.</li>
<li>Which brings me to a method pointed out by Tom Kraak <a href="http://seablick.com/blog/44/search-engine-friendly-301-redirects-without-touching-iis.aspx" title="Search Engine Friendly 301 Redirects Without Touching IIS" target="_blank">Search Engine Friendly 301 Redirects Without Touching IIS</a>. Doesn&#8217;t require access to IIS, no installs on the server, and no cost. There&#8217;s an Open Source project called <a href="http://urlrewriting.net/en/Default.aspx" title="UrlRewritingNet.UrlRewrite" target="_blank">UrlRewritingNet.UrlRewrite</a> which basically gives you the same power as Apache&#8217;s .htaccess file.</li>
</ul>
<h2>A Solution:</h2>
<h3>How to install UrlRewritingNet.UrlRewrite:</h3>
<p><strong>1. Download the Zip file here: <a href="http://urlrewriting.net/159/en/downloads.html">http://urlrewriting.net/159/en/downloads.html</a></strong></p>
<p><strong>2. Copy the file &#8220;UrlRewritingNet.UrlRewriter.dll&#8221; to you web applications&#8217; &#8220;bin&#8221; directory</strong></p>
<p><strong>3.a. Open your &#8220;web.config&#8221; file then find and replace:</strong></p>
<pre name="code"  class="xml">&lt;/configSections&gt;</pre>
<p><strong>3.b. with this:</strong></p>
<pre name="code"  class="xml">&lt;!--URLRewritingNet Module to redirect NON-WWW to WWW and URL Rewriting--&gt;
    &lt;section name="urlrewritingnet" restartOnExternalChanges="true" requirePermission ="false"
type="UrlRewritingNet.Configuration.UrlRewriteSection, UrlRewritingNet.UrlRewriter" /&gt;
  &lt;/configSections&gt;
&lt;!--URLRewritingNet Module to redirect NON-WWW to WWW and URL Rewriting--&gt;
  &lt;urlrewritingnet configSource="ExternalRewrite.config" /&gt;</pre>
<p><strong>4. then add this to &lt;httpModules&gt;:</strong></p>
<pre name="code"  class="xml">&lt;!--URLRewritingNet Module to redirect NON-WWW to WWW--&gt;
      &lt;add name="UrlRewriteModule" type="UrlRewritingNet.Web.
UrlRewriteModule, UrlRewritingNet.UrlRewriter" /&gt;</pre>
<p><strong>5. Create a file called &#8220;ExternalRewrite.config&#8221; at the root of your web application to place all your redirect rules. Below is all we need to automatically redirect all web traffic from NON-WWW to WWW:</strong></p>
<pre name="code"  class="xml">&lt;urlrewritingnet xmlns="http://www.urlrewriting.net/schemas/config/2006/07" &gt;
  &lt;rewrites&gt;
    &lt;add name="RedirectDomain"  virtualUrl="^http\://site.com/(.*).aspx"
    rewriteUrlParameter="ExcludeFromClientQueryString"
    destinationUrl="http://www.site.com/$1.aspx"
    redirect="Domain"
    redirectMode="Permanent"
    ignoreCase="true" /&gt;
  &lt;/rewrites&gt;
&lt;/urlrewritingnet&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.antoniowells.com/301-redirect-non-www-to-www-in-iis-the-easy-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Understanding Sitefinity &#8211; Sitefinity for Web Designers: Part 1</title>
		<link>http://www.antoniowells.com/understanding-sitefinity-sitefinity-for-web-designers-part-1/</link>
		<comments>http://www.antoniowells.com/understanding-sitefinity-sitefinity-for-web-designers-part-1/#comments</comments>
		<pubDate>Thu, 21 May 2009 11:00:17 +0000</pubDate>
		<dc:creator>Antonio Wells</dc:creator>
				<category><![CDATA[CMS]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[Sitefinity]]></category>
		<category><![CDATA[Understanding Sitefinity Web Application]]></category>

		<guid isPermaLink="false">http://www.antoniowells.com/?p=486</guid>
		<description><![CDATA[This series was created to appeal to Web Designers who use or are considering using Sitefinity or seeking a good ASP.NET content management solution. There are some resourceful websites out there but none really focused at us Designers. That&#8217;s not to say I won&#8217;t offer Developer friendly tidbits here&#8230; just expressing the trials and successes I [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_519" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-519" title="Sitefinity Admin Screenshot" src="http://www.antoniowells.com/wp-content/uploads/2009/05/sitefinty-admin-screenshot-31.jpg" alt="Sitefinity Admin Screenshot" width="500" height="200" /><p class="wp-caption-text">Sitefinity Admin Screenshot</p></div>
<p>This series was created to appeal to Web Designers who use or are considering using Sitefinity or seeking a good ASP.NET content management solution. There are some <a title="Sitefinity Watch" href="http://www.sitefinitywatch.com" target="_blank">resourceful websites</a> out there but none really focused at us Designers. That&#8217;s not to say I won&#8217;t offer Developer friendly tidbits here&#8230; just expressing the trials and successes I achieved and sharing knowledge from a Designers&#8217; perspective.</p>
<p><span id="more-486"></span></p>
<h3>What is Sitefinity?</h3>
<p><a title="Sitefinity" href="http://www.sitefinity.com" target="_blank">Sitefinity</a> is a commercial ASP.NET Content Management System created by <a title="Telerik" href="http://www.telerik.com" target="_blank">Telerik</a>, creators of user interface controls for .NET applications. Sitefinity is the resulting mashup of their .NET controls.  <img src='http://www.antoniowells.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<p>The beauty in Sitefinity is it&#8217;s appeal to 3 main demographics of users: <strong>Content Editors, Designers and Developers</strong>.</p>
<p>For <strong>Content Editors</strong>, it offers powerful tools to edit and focus on content driving the website. You can edit a small amount of content or get detailed. One of the commercial features is &#8220;Workflow&#8221;, where it allows you to create content to be approved by a manager before it can be published to the Live website. Therefore you can have working &#8220;Drafts&#8221; concurrent with the live website. Another powerful feature is &#8220;Version Control&#8221;, which keeps a History of every page, which can be reverted to.</p>
<p>For <strong>Designers</strong>, you can focus only on the design piece your love. It requires a familiarity with ASP.NET Master Pages. Master Pages are essentially template files where you can declare zones where content can be edited by Content Editers without worring about them messing up/with the design&#8230; <em>geez I sound like an Adobe Dreamweaver webinar.</em> Seriously, you can put together a feature-loaded website without a Developer!  :-P</p>
<p>For <strong>Developers</strong>, although you don&#8217;t get 100% of the source code <em>(meaning the goodies in the DLLs)</em> everything else has a code-behind or built into a User Control. Or you can create your own user controls! The Membership Provider is built of Microsoft&#8217;s provider, you can tap into Active Directory if that suits your organization/client or create your own. There are so many powerful possibilities you can achieve with this framework.</p>
<h3>Why Sitefinity?</h3>
<p>Sitefinity was the ASP.NET CMS of choice for my company since we&#8217;re an enterprise <em>.NET shop</em>. There are many <a title="ASP.NET CMS" href="http://www.google.com/search?q=.net+cms" target="_blank">.NET CMS&#8217;s</a> out there both open source and commercial, but Sitefinity was the <em>icing on the cake</em> for us since we were already using their UI controls via Telerik.</p>
<h3>Some of my work using Sitefinity</h3>
<p>I guess this is the part where I huff hot air at my nails and shine them against my shirt or <em>&#8220;pop my collar&#8221;</em>!</p>
<p><strong>AXA Assistance USA<br />
</strong>My company&#8217;s website, a mid-size International assistance company dealing in the Travel, Insurance and Financial sector.<br />
<a title="AXA Assistance USA" href="http://www.axa-assistance-usa.com" target="_blank">http://www.axa-assistance-usa.com</a></p>
<p><strong>Nimble Software Systems</strong><br />
Software development firm with an Agile project management product built in Microsoft Silverlight.<br />
<a title="Nimble Software Systems" href="http://www.nimsoftware.com" target="_blank">http://www.nimsoftware.com</a></p>
<p><strong>AXA Assistance Panama<br />
</strong>The sibling website for our company&#8217;s Panama office administering healthcare plans to Panama Canal recipients.<br />
<em>Coming Soon!</em></p>
<p>There&#8217;s one other use, but I can&#8217;t show it off as it&#8217;s an internal system we used in conjuction with our Call Center to deliver content to phone agents.</p>
<h3>Pros&#8230; well Cons</h3>
<p>Sitefinity is not the god-send of CMS&#8230; it has its flaws, below is a quick list of gripes I have with it:</p>
<ul>
<li><strong>Missing some native components</strong> such as Contact Email Form and Google Sitemaps. Although you can grab sample code from the forums or build your own functionality&#8230; for a Designer, something like this should come right out of the box.</li>
<li><strong>Not as easy to deploy.</strong> Deploying a Sitefinity website to a shared hosting environment can have more pain than if you hosted your own web server <em>(as some features require levels of trust, most shared hosting plans will only allow Medium trust at most)</em>. When we get to that point, I&#8217;ll hopefully give some advice to ease those pains.</li>
<li><strong>Too much configuration.</strong> There is a lot of configuration to get the most out of the CMS&#8230; Permissions is one.</li>
<li><strong>No centralized place for free or paid components</strong> (YET!) Well, Telerik will soon be offering a centralized place to download for free and eventually purchase 3rd party components for Sitefinity installations. <em>I&#8217;ll contributing design templates to stay tuned.</em>  <img src='http://www.antoniowells.com/wp-includes/images/smilies/icon_mrgreen.gif' alt=':mrgreen:' class='wp-smiley' /> </li>
</ul>
<p>That being said, don&#8217;t be frightened away from it because every Con mentioned has Pros&#8230; and best of all, Telerik&#8217;s <a title="Sitefinity Support Tickets" href="http://www.sitefinity.com/my-client.net/my-support-tickets/new-support-ticket.aspx" target="_blank">support</a> and <a title="Sitefinity Forums" href="http://www.sitefinity.com/support/forums/forums.aspx" target="_blank">forums</a> are extremely helpful</p>
<h3>How to Get started with Sitefinity</h3>
<p>Create a <a title="Sitefinity Client.net Account" href="http://www.sitefinity.com/my-client.net/login-pages/client.net-registration.aspx" target="_blank">Client.net account</a>, you will be able to download all Sitefinity products&#8230; a license file is required to remove the <em>&#8220;You are running a trial version of Sitefinity&#8221; </em>message <em>(localhost or IP based development machines won&#8217;t show this message)</em>. You can get a &#8220;Community Version&#8221; of the software to test and evaluate. <em>Note: the Community version does not feature Workflow, Multi-lingual support, and Version Control. </em>I only work with the paid version which is $899 license fee per domain name. In the next part of the Series, I will discuss how to Setup a Sitefinity website on a local development environment plus more.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.antoniowells.com/understanding-sitefinity-sitefinity-for-web-designers-part-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Caution: WordPress.org Hates Theme Designers!</title>
		<link>http://www.antoniowells.com/caution-wordpressorg-hates-theme-designers/</link>
		<comments>http://www.antoniowells.com/caution-wordpressorg-hates-theme-designers/#comments</comments>
		<pubDate>Mon, 04 May 2009 11:00:39 +0000</pubDate>
		<dc:creator>Antonio Wells</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[AndroidTapp.com]]></category>
		<category><![CDATA[AntonioWells.com]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress.org]]></category>
		<category><![CDATA[WordTapp]]></category>

		<guid isPermaLink="false">http://www.antoniowells.com/?p=493</guid>
		<description><![CDATA[Be cautioned if you want to share that free WordPress theme you&#8217;ve worked so hard on and want to upload it to the WordPress.org Theme Directory because they don&#8217;t like Theme Designers. I say this because I want to share with other designers the email string I had with the moderator in my latest attempt [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_505" class="wp-caption alignnone" style="width: 510px"><img class="size-full wp-image-505" title="WordPress.org Themes Gives Theme Designers Middle Finger" src="http://www.antoniowells.com/wp-content/uploads/2009/05/wordpress-gives-theme-designers-middle-finger.jpg" alt="WordPress.org Themes Gives Theme Designers Middle Finger" width="500" height="367" /><p class="wp-caption-text">WordPress.org Themes Gives Theme Designers Middle Finger</p></div>
<p>Be cautioned if you want to share that free WordPress theme you&#8217;ve worked so hard on and want to upload it to the WordPress.org Theme Directory because they don&#8217;t like Theme Designers. I say this because I want to share with other designers the email string I had with the moderator in my latest attempt to share <a title="WordTapp, a free WordPress theme by AndroidTapp.com" href="http://www.androidtapp.com/wordtapp-wordpress-theme/" target="_blank">WordTapp, a free WordPress theme by AndroidTapp.com</a>.</p>
<p><span id="more-493"></span></p>
<h3>Wooo Whoooooo! The auto queue message:</h3>
<blockquote>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Tue 4/21/2009 4:10 PM</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Thank you for uploading WordTapp to the WordPress Theme Directory.<span style="mso-spacerun: yes;">  </span>If your theme is selected to be part of the directory we&#8217;ll send a follow up email.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&#8211;</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">The WordPress.org Themes Team</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><a href="mailto:themes@wordpress.org"><span style="font-size: small; color: #0000ff; font-family: Consolas;">themes@wordpress.org</span></a></p>
</blockquote>
<p>In anticipation the review/approval process would take a few days <em>(as it did with Fresh)</em>, I didn&#8217;t publish the page  at AndroidTapp.com <em>(it was scheduled for the next day)</em>, thus resulted in a bad link in the theme. Plus I had an oversight by keeping test links in the Sidebar <strong>BlogRoll</strong> section of the theme.</p>
<h3>Here&#8217;s the corrective actions email:</h3>
<blockquote>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"><span style="font-size: small; font-family: Consolas;">Tue 4/21/2009 4:10 PM</span></p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"><span style="font-size: small; font-family: Consolas;">While reviewing WordTapp &#8211; 1.0 we found the following problems: </span></p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"> </p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"><span style="font-size: small; font-family: Consolas;">- Broken link to </span><a href="http://www.androidtapp.com/wordtapp-wordpress-theme/"><span style="font-size: small; font-family: Consolas;">http://www.androidtapp.com/wordtapp-wordpress-theme/</span></a><span style="font-size: small; font-family: Consolas;">in footer.php and style.css. </span></p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"> </p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"><span style="font-size: small; font-family: Consolas;">- There should not be any links hard coded into sidebar.php. Please remove the following links: </span></p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"> </p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"><span style="font-size: small; font-family: Consolas;">http://www.androidtapp.com</span></p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"> </p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"><span style="font-size: small; font-family: Consolas;">http://www.antoniowells.com</span></p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"> </p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"><span style="font-size: small; font-family: Consolas;">http://www.namynot.com</span></p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"> </p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"><span style="font-size: small; font-family: Consolas;">Please fix these items, increase the theme version in style.css and upload your theme again.<span style="mso-spacerun: yes">  </span>Then we&#8217;ll review the new version.<span style="mso-spacerun: yes">  </span>You can upload updates to you theme at any time.</span></p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"> </p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"><span style="font-size: small; font-family: Consolas;">Thanks.</span></p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"> </p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"><span style="font-size: small; font-family: Consolas;">&#8211;</span></p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"> </p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"><span style="font-size: small; font-family: Consolas;">WordPress Theme Directory</span></p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"> </p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"><span style="font-size: small; font-family: Consolas;">http://wordpress.org/extend/themes/</span></p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"> </p>
<p class="MsoPlainText" style="MARGIN: 0in 0in 0pt"><a href="mailto:themes@wordpress.org"><span style="font-size: small; color: #0000ff; font-family: Consolas;">themes@wordpress.org</span></a></p>
</blockquote>
<p>So I published the page at AndroidTapp.com to fix the broken link issue, but forgot to remove the links in the Sidebar <strong>BlogRoll</strong> section of the theme.</p>
<h3>Here&#8217;s the Rejection email with vague explanation why:</h3>
<blockquote>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Wed 4/22/2009 11:30 AM</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Thank you for submitting the WordTapp theme, however it has not been selected to be part of the theme directory.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"> </p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Theme credit links aren&#8217;t intended to be used to promote sites.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"> </p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&#8211;</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"> </p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">WordPress Theme Directory</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"> </p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">http://wordpress.org/extend/themes/</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"> </p>
<h3 class="MsoPlainText" style="margin: 0in 0in 0pt;"><a href="mailto:themes@wordpress.org"><span style="font-size: small; color: #0000ff; font-family: Consolas;">themes@wordpress.org</span></a></h3>
</blockquote>
<h3>I write back expressing my concerns:</h3>
<blockquote>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Wed 4/22/2009 12:06 PM</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">This baffles me as other theme authors have a similar link in their footer; a link to the theme and link to author website. I also submitted a theme a few months back in the same way, the theme is &#8220;Fresh&#8221; </span><a href="http://wordpress.org/extend/themes/fresh"><span style="font-size: small; font-family: Consolas;">http://wordpress.org/extend/themes/fresh</span></a><span style="font-size: small; font-family: Consolas;">. Here are just 2 examples of your most popular themes with the same credit link: </span><a href="http://wordpress.org/extend/themes/pixeled"><span style="font-size: small; font-family: Consolas;">http://wordpress.org/extend/themes/pixeled</span></a><span style="font-size: small; font-family: Consolas;"> AND </span><a href="http://wordpress.org/extend/themes/atahualpa"><span style="font-size: small; font-family: Consolas;">http://wordpress.org/extend/themes/atahualpa</span></a><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">The theme has 2 links: </span><a href="http://www.androidtapp.com/wordtapp-wordpress-theme/"><span style="font-size: small; font-family: Consolas;">http://www.androidtapp.com/wordtapp-wordpress-theme/</span></a><span style="font-size: small; font-family: Consolas;"> AND </span><a href="http://www.androidtapp.com/"><span style="font-size: small; font-family: Consolas;">http://www.androidtapp.com/</span></a><span style="font-size: small; font-family: Consolas;"> which are the same website. Is there something that can be changed? I think it would be unfair to theme designers to not be credited for their work if all links are removed. Please clarify.</span></p>
</blockquote>
<p>Then the moderator goes off into <em>left-field</em> saying now my first theme &#8220;<a title="Fresh, a Free WordPress Theme by AntonioWells.com" href="http://www.antoniowells.com/2008/10/05/fresh-wordpress-theme/"><strong>Fresh</strong></a>&#8221; is not eligible for the theme directory when its been there <strong>since October of 2008</strong>. His explanation&#8230; because this website links to <a title="ThemeForest.net" href="http://themeforest.net/?ref=namynot" target="_blank">ThemeForest.net</a> which sells WordPress themes. It&#8217;s clear they have a grudge against entities that sell WordPress themes, but they&#8217;re picking their fight with the wrong people. Idiots don&#8217;t retaliate against the supporters of your system!</p>
<h3>Then received these retaliatory, robotic and vague responses:</h3>
<blockquote>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Wed 4/22/2009 12:51 PM</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">On Wed, Apr 22, 2009 at 11:05 AM, AndroidTapp.com Android App Reviews </span><span style="font-size: small; color: #0000ff; font-family: Consolas;"><a href="mailto:info@andriodtapp.com">info@andriodtapp.com</a></span><span style="font-size: small; font-family: Consolas;"> wrote:</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; This baffles me as other theme authors have a similar link in their footer; a link to the theme and link to author website. I also submitted a theme a few months back in the same way, the theme is &#8220;Fresh&#8221; </span><a href="http://wordpress.org/extend/themes/fresh"><span style="font-size: small; font-family: Consolas;">http://wordpress.org/extend/themes/fresh</span></a><span style="font-size: small; font-family: Consolas;">.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">I don&#8217;t see a link to androidtapp.com in that theme.<span style="mso-spacerun: yes;">  </span>However looking at it now I do see that your site (antoniowells.com) is linking to a site that provides themes that are not compatible with the GPL.<span style="mso-spacerun: yes;">  </span>As such that would make your Fresh theme ineligible to be part of the theme directory.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Here are just 2 examples of your most popular themes with the same credit link: </span><a href="http://wordpress.org/extend/themes/pixeled"><span style="font-size: small; font-family: Consolas;">http://wordpress.org/extend/themes/pixeled</span></a><span style="font-size: small; font-family: Consolas;"> AND </span><a href="http://wordpress.org/extend/themes/atahualpa"><span style="font-size: small; font-family: Consolas;">http://wordpress.org/extend/themes/atahualpa</span></a></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Consolas;">&gt; </span></span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; The theme has 2 links: </span><a href="http://www.androidtapp.com/wordtapp-wordpress-theme/"><span style="font-size: small; font-family: Consolas;">http://www.androidtapp.com/wordtapp-wordpress-theme/</span></a><span style="font-size: small; font-family: Consolas;"> AND </span><a href="http://www.androidtapp.com/"><span style="font-size: small; font-family: Consolas;">http://www.androidtapp.com/</span></a><span style="font-size: small; font-family: Consolas;"> which are the same website. Is there something that can be changed? I think it would be unfair to theme designers to not be credited for their work if all links are removed. Please clarify.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Links are intended to go to the theme author, not promote sites.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&#8211;</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">WordPress Themes</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><a href="mailto:themes@wordpress.org"><span style="font-size: small; color: #0000ff; font-family: Consolas;">themes@wordpress.org</span></a></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><a href="http://wordpress.org/extend/themes/"><span style="font-size: small; font-family: Consolas;">http://wordpress.org/extend/themes/</span></a></p>
</blockquote>
<h3>I email back this:</h3>
<blockquote>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Wed 4/22/2009 1:42 PM</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">I apologize for the mix up. I’ve re-uploaded a new version, there was an oversight on the links in the sidebar.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">But I do have question about this statement:</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><em><span style="font-size: small;"><span style="font-family: Consolas;">I don&#8217;t see a link to androidtapp.com in that theme.  However looking at it now I do see that your site (antoniowells.com) is linking to a site that provides themes that are not compatible with the GPL.  As such that would make your Fresh theme ineligible to be part of the theme directory.</span></span></em></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">How does “Fresh” theme violate GPL. The theme is free, completely created by me, and I still support designers who have questions or even need help for free???</span></p>
<p> </p></blockquote>
<h3>Then receive this:</h3>
<blockquote>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Wed 4/22/2009 3:31 PM</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Your site (antoniowells.com) has a link to a site that support non-GPL themes (themeforest.net), which we don&#8217;t want to encourage as those themes break the licensing terms of WordPress.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">On Wed, Apr 22, 2009 at 12:42 PM, AndroidTapp.com Android App Reviews </span><span style="font-size: small; color: #0000ff; font-family: Consolas;"><a href="mailto:info@andriodtapp.com">info@andriodtapp.com</a></span><span style="font-size: small; font-family: Consolas;"> wrote:</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; I apologize for the mix up. I’ve re-uploaded a new version, there was </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; an oversight on the links in the sidebar.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Consolas;">&gt; </span></span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Consolas;">&gt; </span></span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Consolas;">&gt; </span></span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; But I do have question about this statement:</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Consolas;">&gt; </span></span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Consolas;">&gt; </span></span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Consolas;">&gt; </span></span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; I don&#8217;t see a link to androidtapp.com in that theme.  However looking </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; at it now I do see that your site (antoniowells.com) is linking to a </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; site that provides themes that are not compatible with the GPL.  As </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; such that would make your Fresh theme ineligible to be part of the theme directory.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Consolas;">&gt; </span></span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Consolas;">&gt; </span></span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Consolas;">&gt; </span></span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; How does “Fresh” theme violate GPL. The theme is free, completely </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; created by me, and I still support designers who have questions or </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; even need help for free???</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&#8211;</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">WordPress Themes</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><a href="mailto:themes@wordpress.org"><span style="font-size: small; color: #0000ff; font-family: Consolas;">themes@wordpress.org</span></a></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><a href="http://wordpress.org/extend/themes/"><span style="font-size: small; font-family: Consolas;">http://wordpress.org/extend/themes/</span></a></p>
</blockquote>
<h3>I email back this:</h3>
<blockquote>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Thu 4/23/2009 11:58 AM</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">It seems that regardless of how we upload the theme, you have you mind made up the &#8220;WordTapp&#8221; will not be included in the directory. I say this because you offer no concrete advice on getting it included. </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Image if every website (100% of them) that runs WordPress removed the credit &#8220;Powered by WordPress&#8221; with credit link back to wordpress.org. Do you think it would have caught on with popularity, and your team continuing efforts? I think you would agree if Wordpress was never credited and never became popular, efforts would have been abandoned. </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Correct&#8230; everything associated with WordTapp theme is linked to androidtapp.com as we are giving the theme away to the WordPress community via the popular of that site. Giving free stuff away is one of the core activities of that website.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">To remove the author credit is unfair in order to get included in the theme directory when every other theme has author credit. Could you suggest how the theme can be included and how can the theme author be credited?</span></p>
<p> </p></blockquote>
<h3>Then receive this:</h3>
<blockquote>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Thu 4/23/2009 11:26 AM<br />
Sites that support those offering non-GPL themes are not going to be allowed in the theme directory.<span style="mso-spacerun: yes;">  </span>They are breaking the licensing terms under which WordPress is distributed and we aren&#8217;t going to encourage that type of activity.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Everything associated with the WordTapp theme still links to androidtapp.com.<span style="mso-spacerun: yes;">  </span>Theme/credit links are not intended to promote sites.<span style="mso-spacerun: yes;">  </span>Even the androidtapp user profile</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">(</span><a href="http://wordpress.org/extend/themes/profile/androidtapp"><span style="font-size: small; font-family: Consolas;">http://wordpress.org/extend/themes/profile/androidtapp</span></a><span style="font-size: small; font-family: Consolas;">) is pointing to androidtapp.com.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">On Wed, Apr 22, 2009 at 2:58 PM, AndroidTapp.com Android App Reviews </span><span style="font-size: small; color: #0000ff; font-family: Consolas;"><a href="mailto:info@andriodtapp.com">info@andriodtapp.com</a></span><span style="font-size: small; font-family: Consolas;"> wrote:</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; That link can be removed. I would suggest not removing &#8220;Fresh&#8221; theme as it would discourage me from creating and sharing any new WordPress themes. Also, is there anything else stopping &#8220;WordTapp&#8221; from being included?</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&#8211;</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">WordPress Themes</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><a href="mailto:themes@wordpress.org"><span style="font-size: small; color: #0000ff; font-family: Consolas;">themes@wordpress.org</span></a></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><a href="http://wordpress.org/extend/themes/"><span style="font-size: small; font-family: Consolas;">http://wordpress.org/extend/themes/</span></a></p>
</blockquote>
<h3>I email back this:</h3>
<blockquote>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Thu 4/23/2009 3:15 PM</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">I see your point. I&#8217;m not sure how you got the impression that </span><a href="http://www.androidtapp.com/"><span style="font-size: small; font-family: Consolas;">www.androidtapp.com</span></a><span style="font-size: small; font-family: Consolas;">spams in any possible way. Nor does this link to websites that deal in themes that are not compatible with the GPL. We have zero links of that kind present nowhere on any page of that website. If it is not too much trouble to ask you evidence of this? Also, I ask&#8230; how do we get &#8220;WordTapp&#8221; theme included in the theme directory?</span></p>
</blockquote>
<p>It became obvious that <strong>WordTapp</strong> was not going to be included and the moderator was hiding behind vague excuses, but I continued to stroke his ego until I got that official &#8220;No&#8221;.</p>
<h3>Here&#8217;s the blastfimous email back:</h3>
<blockquote>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Thu 4/23/2009 2:10 PM</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">On Thu, Apr 23, 2009 at 10:58 AM, AndroidTapp.com Android App Reviews &lt;</span><span style="font-size: small; color: #0000ff; font-family: Consolas;">info@andriodtapp.com</span><span style="font-size: small; font-family: Consolas;">&gt; wrote:</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; It seems that regardless of how we upload the theme, you have you mind </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; made up the &#8220;WordTapp&#8221; will not be included in the directory. I say </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; this because you offer no concrete advice on getting it included.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">I&#8217;ve already mentioned, theme links are intended to go back to the theme author&#8217;s site, not for promotion of sites.<span style="mso-spacerun: yes;">  </span>You case is a bit different still because it looks like the author site (your site) is also promoting sites that offer themes that are not compatible with the GPL, which is something else we also don&#8217;t want to encourage.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; Image if every website (100% of them) that runs WordPress removed the </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; credit &#8220;Powered by WordPress&#8221; with credit link back to wordpress.org. </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; Do you think it would have caught on with popularity, and your team </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; continuing efforts? I think you would agree if Wordpress was never </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; credited and never became popular, efforts would have been abandoned.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Not asking for no credit links, just asking for credit links that aren&#8217;t spam or promoting the breaking of the licensing terms that WordPress ships with.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Consolas;">&gt; </span></span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; Correct&#8230; everything associated with WordTapp theme is linked to </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; androidtapp.com as we are giving the theme away to the WordPress </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; community via the popular of that site. Giving free stuff away is one </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; of the core activities of that website.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small;"><span style="font-family: Consolas;">&gt; </span></span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; To remove the author credit is unfair in order to get included in the </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; theme directory when every other theme has author credit. Could you </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; suggest how the theme can be included and how can the theme author be credited?</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Don&#8217;t use the credit link as spam/promotion and don&#8217;t promote sites that deal in themes that are not compatible with the GPL.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&#8211;</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">WordPress Themes</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><a href="mailto:themes@wordpress.org"><span style="font-size: small; color: #0000ff; font-family: Consolas;">themes@wordpress.org</span></a></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><a href="http://wordpress.org/extend/themes/"><span style="font-size: small; font-family: Consolas;">http://wordpress.org/extend/themes/</span></a></p>
</blockquote>
<p>By then I couldn&#8217;t believe the audacity of this idiot, to blatantly call AndroidTapp.com SPAM! If you frequent that site or know anything about it you&#8217;ll know we never Spam and have <a title="AndroidTapp.com Freebies" href="http://www.androidtapp.com/category/freebies/" target="_blank">free giveaways often</a>. Such as our <a title="AndroidTapp.com American Express Gift Cards Giveaway Promotion" href="http://www.androidtapp.com/androidtappcom-american-express-gift-cards-giveaway/" target="_blank">American Express Gift cards giveaway</a>, or the <a title="AndroidTapp.com T-mobile G1 Cell Phone Giveaway Promotion" href="http://www.androidtapp.com/androidtapp-tmobile-g1-cell-phone-giveaway-promotion" target="_blank">free T-Mobile G1 cellphone we gave away</a>. We pride ourselves on quality content and since have become the <a title="#1 Android App Review website" href="http://www.google.com/search?q=android+app+reviews" target="_blank">#1 Android App Review website</a>. This was offensive, but I pushed for more.</p>
<h3>I email back this:</h3>
<blockquote>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Fri 4/24/2009 11:51 AM</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">We just uploaded the theme without any credits, and was not able to remove our credit link on the wordpressprofile page. It&#8217;s unfortunate that the creator of the theme design could not receive credit for work.</span></p>
</blockquote>
<h3>Then receive this:</h3>
<blockquote>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Fri 4/24/2009 10:57 AM</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Theme links are intended to point the theme author&#8217;s site, not for using in promoting sites.<span style="mso-spacerun: yes;">  </span>Linking to androidtapp.com falls into that category.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">The site antoniowells.com is linking to a site ( </span><a href="http://themeforest.net/"><span style="font-size: small; color: #0000ff; font-family: Consolas;">http://themeforest.net/</span></a><span style="font-size: small; font-family: Consolas;"> ) that promotes themes that are not compatible with the GPL.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Neither of these activities are things that we want to encourage.<span style="mso-spacerun: yes;">  </span>So, the wordtapp theme would need to link to the theme author&#8217;s site and antoniowells.com would need to not be linking to sites that promote themes that are not compatible with the GPL.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">On Thu, Apr 23, 2009 at 2:15 PM, AndroidTapp.com Android App Reviews </span><span style="font-size: small; color: #0000ff; font-family: Consolas;"><a href="mailto:info@andriodtapp.com">info@andriodtapp.com</a></span><span style="font-size: small; font-family: Consolas;"> wrote:</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; I see your point. I&#8217;m not sure how you got the impression that </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; </span><a href="http://www.androidtapp.com/"><span style="font-size: small; font-family: Consolas;">www.androidtapp.com</span></a><span style="font-size: small; font-family: Consolas;"> spams in any possible way. Nor does this link to </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; websites that deal in themes that are not compatible with the GPL. We </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; have zero links of that kind present nowhere on any page of that </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; website. If it is not too much trouble to ask you evidence of this? </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; Also, I ask&#8230; how do we get &#8220;WordTapp&#8221; theme included in the theme directory?</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&#8211;</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">WordPress Themes</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><a href="mailto:themes@wordpress.org"><span style="font-size: small; color: #0000ff; font-family: Consolas;">themes@wordpress.org</span></a></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><a href="http://wordpress.org/extend/themes/"><span style="font-size: small; font-family: Consolas;">http://wordpress.org/extend/themes/</span></a></p>
</blockquote>
<h3>I email back this:</h3>
<blockquote>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Mon 4/27/2009 3:16 PM</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Hi, now that we&#8217;ve pulled our credit links out, is there anything else stopping the theme &#8220;WordTapp&#8221; from being included?</span></p>
</blockquote>
<p>Just to prove my point, all but 1 link was removed from the theme: <a title="Google Search for WordTapp" href="http://www.google.com/search?q=wordtapp" target="_blank">http://www.google.com/search?q=wordtapp</a> <em>(as you cannot upload to WordPress.org Theme with the Author link empty in the &#8220;style.css&#8221; file. There must but at least one link)</em>. We I linked to the source where other potential downloaders would look to find the theme anyway: Google.</p>
<h3>Then receive this:</h3>
<blockquote>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Mon 4/27/2009 5:12 PM</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">The theme URL is </span><a href="http://www.google.com/search?q=wordtapp"><span style="font-size: small; color: #0000ff; font-family: Consolas;">http://www.google.com/search?q=wordtapp</span></a><span style="font-size: small;"><span style="font-family: Consolas;"><span style="mso-spacerun: yes;">  </span>?</span></span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">Look, it&#8217;s clear you want to promote your androidtapp.com site with this theme.<span style="mso-spacerun: yes;">  </span>Themes that do that aren&#8217;t a good fit for the theme directory.</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">On Mon, Apr 27, 2009 at 2:16 PM, AndroidTapp.com Android App Reviews </span><span style="font-size: small; color: #0000ff; font-family: Consolas;"><a href="mailto:info@andriodtapp.com">info@andriodtapp.com</a></span><span style="font-size: small; font-family: Consolas;"> wrote:</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; Hi, now that we&#8217;ve pulled our credit links out, is there anything else </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&gt; stopping the theme &#8220;WordTapp&#8221; from being included?</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;"> </span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">&#8211;</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><span style="font-size: small; font-family: Consolas;">WordPress Themes</span></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><a href="mailto:themes@wordpress.org"><span style="font-size: small; color: #0000ff; font-family: Consolas;">themes@wordpress.org</span></a></p>
<p class="MsoPlainText" style="margin: 0in 0in 0pt;"><a href="http://wordpress.org/extend/themes/"><span style="font-size: small; font-family: Consolas;">http://wordpress.org/extend/themes/</span></a></p>
</blockquote>
<p>In conclusion, this is why I titled this rant &#8220;<em>Caution: WordPress.org Hates Theme Designers!</em>&#8220;. I challenge this idiotic moderator to post comments here. It&#8217;s even obvious how Plugins get more respect knuckles as they can be easily updated from your WP Admin, while Themes must be manually downloaded. Not to mention when they <a title="WordPress Pulls the Plug on Premium Themes" href="http://wpcandy.com/articles/wordpress-pulls-the-plug-on-premium-themes.html" target="_blank">suspended themes</a>, <a title="WordPress.org Pull 200 GPL Themes" href="http://spectacu.la/wordpressorg-pull-200-gpl-themes/" target="_blank">unexpectedly removed themes</a>, and <a title="Why Were 200 WordPress Themes Removed?" href="http://www.jeffro2pt0.com/why-were-200-wordpress-themes-removed" target="_blank">realized how much of a mistake</a> that was then <a title="WordPress.org Theme Directory Reinstated" href="http://wordpress.org/development/2008/07/theme-directory/" target="_blank">reinstating the theme directory</a>.</p>
<p>If you&#8217;ve experienced similar or <strong>worse treatment</strong> in sharing your theme, please comment below. This is your way to fight back and express your opinions! Even if you support the moderators responses and think I&#8217;m an idiot&#8230; I&#8217;d like to hear your blasts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.antoniowells.com/caution-wordpressorg-hates-theme-designers/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Getting back on Blogging Track</title>
		<link>http://www.antoniowells.com/getting-back-on-blogging-track/</link>
		<comments>http://www.antoniowells.com/getting-back-on-blogging-track/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 22:50:06 +0000</pubDate>
		<dc:creator>Antonio Wells</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[New Blogging Focus]]></category>
		<category><![CDATA[Sitefinity]]></category>

		<guid isPermaLink="false">http://www.antoniowells.com/?p=482</guid>
		<description><![CDATA[My apologies to visitors and readers of my Web Design blog. I&#8217;ve cut down from 2-3 posts per week to 2-3 per month&#8230; if that.
I&#8217;m better managing my time and writing topics to hopefully crank out more frequently and completed series. Much time has been devoted to www.AndroidTapp.com, which is turning into a huge success [...]]]></description>
			<content:encoded><![CDATA[<p>My apologies to visitors and readers of my Web Design blog. I&#8217;ve cut down from 2-3 posts per week to 2-3 per month&#8230; if that.</p>
<p>I&#8217;m better managing my time and writing topics to hopefully crank out more frequently and completed series. Much time has been devoted to <a title="www.AndroidTapp.com" href="http://www.androidtapp.com" target="_blank">www.AndroidTapp.com</a>, which is turning into a huge success <em>(I&#8217;ll report more about that later)</em>.</p>
<p>I&#8217;m refocusing my topics here into series about the following:</p>
<p><strong>Learning Web Design, A Guide for Beginners.</strong> Which will be a series from concept to completion how to design a professional website based on my own <a title="Anatomy of Professional Web Design series" href="http://www.antoniowells.com/category/website-design-anatomy/">guidelines discussed in this series</a>.</p>
<p><strong>ASP.NET for Designers.</strong> Discussing techniques and tutorials on learning ASP.NET for Web Designers.</p>
<p><strong>Sitefinity Design.</strong> A Content Management System (CMS) created by <a title="Telerik" href="http://www.telerik.com" target="_blank">Telerik</a> using their .NET controls. It is great for custom development, yet designer-friendly and even better for non-tech content editors. I wil explorer designing and developing on this platform as the resources are NOT plentiful than that of WordPress.</p>
<p><strong>Produce more Free Themes &amp; Templates.</strong> Everybody loves free stuff right?!?! I have a <a title="few free Themes" href="http://www.antoniowells.com/category/freebies/">few free Themes &amp; Templates</a> out there that need updating, plus I will crank out more beautifully designed themes and support those as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.antoniowells.com/getting-back-on-blogging-track/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Win a Free Android T-Mobile G1 Phone</title>
		<link>http://www.antoniowells.com/how-to-win-a-free-android-t-mobile-g1-phone/</link>
		<comments>http://www.antoniowells.com/how-to-win-a-free-android-t-mobile-g1-phone/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 02:03:08 +0000</pubDate>
		<dc:creator>Antonio Wells</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[AndroidTapp.com]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[G1]]></category>
		<category><![CDATA[Giveaways]]></category>
		<category><![CDATA[Promotions]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[T-Mobile G1]]></category>

		<guid isPermaLink="false">http://www.antoniowells.com/?p=466</guid>
		<description><![CDATA[
The newly launched social network website AndroidTapp.com is giving away a new free T-Mobile G1 cell phone, the winner will be chosen at random. Utilizing various &#8220;Web 2.0&#8243; methods to gain community participation in the promotion. Promotion starts Monday 11:59pm CST December 22, 2008 and ends Monday 11:59pm CST January 19, 2009. Participants can submit several entries [...]]]></description>
			<content:encoded><![CDATA[<p><a title="How to Win a Free Android T-Mobile G1 Phone" href="http://www.androidtapp.com/androidtapp-tmobile-g1-cell-phone-giveaway-promotion/" target="_blank"><img class="alignnone" title="How to Win a Free Android T-Mobile G1 Phone" src="http://www.androidtapp.com/wp-content/uploads/2008/12/t-mobile-g1-giveaway-promotion.jpg" alt="How to Win a Free Android T-Mobile G1 Phone" width="500" height="200" /></a></p>
<p>The newly launched social network website <a title="AndroidTapp.com is giving away a new free T-Mobile G1 cell phone" href="http://www.androidtapp.com/androidtapp-tmobile-g1-cell-phone-giveaway-promotion/" target="_blank">AndroidTapp.com is giving away a new free T-Mobile G1 cell phone</a>, the winner will be chosen at random. Utilizing various &#8220;Web 2.0&#8243; methods to gain community participation in the promotion. Promotion starts Monday 11:59pm CST December 22, 2008 and ends Monday 11:59pm CST January 19, 2009. Participants can submit several entries by:</p>
<p><span id="more-466"></span></p>
<table class="Table" border="0" cellspacing="0" cellpadding="5" width="100%">
<tbody>
<tr>
<th scope="col">How to Enter</th>
<th scope="col">Possible Entries</th>
</tr>
<tr>
<td class="Row"><strong><a title="Signup for AndroidTapp.com" href="http://www.androidtapp.com/wp-login.php?action=register">Signup</a>                                  </p>
<p> </p>
<p></strong></td>
<td class="Row"><strong>5 Entries</strong> (if you’ve signed up prior to promotion, you’re already qualified and have 6 Entries already)</td>
</tr>
<tr>
<td class="Row"><strong><a title="Enter a Comment below" href="http://www.androidtapp.com/androidtapp-tmobile-g1-cell-phone-giveaway-promotion/#comments">Enter a Comment below</a></strong><br />
regarding the T-Mobile G1 or AndroidTapp.com</td>
<td class="Row"><strong>3 Entries</strong></td>
</tr>
<tr>
<td class="Row"><strong>Blog it</strong></td>
<td class="Row"><strong>3 Entries</strong>(if you write about this promotion in your blog, your Trackback/Pingback earns you 3 Entries) Please link to this URL:<br />
<a title="When Blogging about us for entry, please use this URL for TrackBack/Pingback" href="http://www.androidtapp.com/androidtapp-tmobile-g1-cell-phone-giveaway-promotion/">http://www.androidtapp.com/androidtapp-tmobile-g1-cell-phone-giveaway-promotion/</a></td>
</tr>
<tr>
<td class="Row"><strong><a title="Digg It" href="http://digg.com/gadgets/AndroidTapp_com_T_mobile_G1_Cell_Phone_Giveaway_Promotion" target="_blank">Digg it</a></strong></td>
<td class="Row"><strong>2 Entries</strong></td>
</tr>
<tr>
<td class="Row"><strong><a title="Follow Us on Twitter" href="http://twitter.com/androidtapp" target="_blank">Follow Us on Twitter</a></strong></td>
<td class="Row"><strong>1 Entry</strong> (simply follow us on Twitter. If you’ve followed prior to the promotion, and want to be entered, just send us an @Reply or Direct Reply earns you 2 Entries)</td>
</tr>
<tr>
<td class="Row"><strong><a title="Droideo.com - The Place for Android Videos" href="http://www.droideo.com/" target="_blank">Droideo.com &#8211; The Place for Android Videos</a></strong></td>
<td class="Row">Don’t forget to visit our Partner’s website!!!</td>
</tr>
</tbody>
</table>
<p>AndroidTapp.com is pioneering delivering relevant promotions and unique content their Android target market. The entry methods are also painlessly quick too. A few commenters stated it took all of 5 seconds to signup, 1 click to Digg it, or just a few more to follow on Twitter.</p>
<p>When the winner is drawn, I&#8217;ll post it here!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.antoniowells.com/how-to-win-a-free-android-t-mobile-g1-phone/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Anatomy of Professional Website Design &#8211; Part 2</title>
		<link>http://www.antoniowells.com/anatomy-of-professional-website-design-part-2/</link>
		<comments>http://www.antoniowells.com/anatomy-of-professional-website-design-part-2/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 21:41:08 +0000</pubDate>
		<dc:creator>Antonio Wells</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Website Design Anatomy]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[CMS Made Simple]]></category>
		<category><![CDATA[Concept to Completion]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[PSD to HTML]]></category>
		<category><![CDATA[PSD to XHTML]]></category>
		<category><![CDATA[Swatches]]></category>
		<category><![CDATA[Typography]]></category>
		<category><![CDATA[Website Design Analysis]]></category>

		<guid isPermaLink="false">http://www.antoniowells.com/?p=436</guid>
		<description><![CDATA[Part 2 of the &#8220;concept-to-completion&#8221; series focuses on the Design of a Professional website. In the previous article, Anatomy of Professional Website Design &#8211; Part 1, we discussed the Creative Direction, Sitemap &#38; Sketches. The following series will focus on the Development and the Flash Animated Introduction.
So stay tuned for the complete anatomy (You can [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.antoniowells.com/wp-content/uploads/2008/12/plan-d-interior-blog.jpg"></a>Part 2 of the &#8220;concept-to-completion&#8221; series focuses on the <strong>Design</strong> of a Professional website. In the previous article, <a title="Anatomy of Professional Website Design - Part 1" href="http://www.antoniowells.com/2008/11/03/anatomy-of-professional-website-design-part-1/">Anatomy of Professional Website Design &#8211; Part 1</a>, we discussed the Creative Direction, Sitemap &amp; Sketches. The following series will focus on the Development and the Flash Animated Introduction.</p>
<div class="Downloads">So stay tuned for the complete anatomy (You can stay updated by <a title="grab the RSS Feed" href="http://feeds.feedburner.com/AntonioWells" target="_blank">grabbing the RSS feed</a> or <a title="Stay posted via Email Updates" href="http://www.feedburner.com/fb/a/emailverifySubmit?feedId=2570947&amp;amp;loc=en_US" target="_blank">stay posted via Email Updates</a>)</div>
<h3>Design &#8211; now we can crack open Photoshop!</h3>
<p>Now that we&#8217;ve taken time and analyzed the scope of project, we have our creative direction, Sitemap, and sketches we can now crack open Photoshop. <em>(See the before and after in the captions below)</em></p>
<p><img class="size-medium wp-image-374" title="Plan D Website Sketches" src="http://www.antoniowells.com/wp-content/uploads/2008/11/plan-d-website-sketches-300x213.gif" alt="Plan D Website Sketches" width="300" height="213" /> <img class="size-medium wp-image-440" title="Original Photoshop design layout" src="http://www.antoniowells.com/wp-content/uploads/2008/12/plan-d-home-in-photoshop-300x234.jpg" alt="Here is a screenshot of the original Photoshop design layout, notice the owners portfolio shot, it was changed towards launch as her clothing color scheme did not compliment the webpage design." width="300" height="234" /><br />
<em>(Right: Here is a screenshot of the original Photoshop design layout, notice the owners portfolio shot, it was changed towards launch as her clothing color scheme did not compliment the web page design. Left: Plan D Website Sketches gave me an opportunity to establish page structure, draft the homepage splash, interior pages, and other notes.)</em></p>
<p><span id="more-436"></span><em></em></p>
<h4>Breaking Bad Habits</h4>
<p><a title="Mindy Wagner of Viget wrote a great article about Bad Habits" href="http://www.viget.com/inspire/breaking-bad-habits-in-photoshop/" target="_blank">Mindy Wagner of Viget wrote a great article about Bad Habits</a> we as designers often do in Photoshop (slap on the wrist and must stop it)! <em>Since then I&#8217;ve been trying to clean up my act. </em> <img src='http://www.antoniowells.com/wp-includes/images/smilies/icon_smile.gif' alt=':smile:' class='wp-smiley' /> </p>
<h4>Design before you Code</h4>
<p>Now that the homepage was designed, my attention was focused on the <em>Interior Page</em> design. When designing each interior page I wanted to do something more interesting with the background images. I wanted each section to have a different &#8220;green&#8221; background image. Images that not only reflected green, but imagery that corresponded to the particular website section.</p>
<p><a href="http://www.antoniowells.com/wp-content/uploads/2008/12/plan-d-interior-bio.jpg"><img class="alignnone size-medium wp-image-445" title="Plan D Interior Design - Bio page" src="http://www.antoniowells.com/wp-content/uploads/2008/12/plan-d-interior-bio-300x234.jpg" alt="" width="300" height="234" /></a> <a href="http://www.antoniowells.com/wp-content/uploads/2008/12/plan-d-interior-services.jpg"><img class="alignnone size-medium wp-image-446" title="Plan D Interior Design - Services page" src="http://www.antoniowells.com/wp-content/uploads/2008/12/plan-d-interior-services-300x234.jpg" alt="" width="300" height="234" /></a> <a href="http://www.antoniowells.com/wp-content/uploads/2008/12/plan-d-interior-blog.jpg"><img class="alignnone size-medium wp-image-449" title="Plan D Interior Design - &quot;Green&quot; Blog page" src="http://www.antoniowells.com/wp-content/uploads/2008/12/plan-d-interior-blog-300x234.jpg" alt="" width="300" height="234" /></a> <a href="http://www.antoniowells.com/wp-content/uploads/2008/12/plan-d-interior-contact.jpg"><img class="alignnone size-thumbnail wp-image-448" title="Plan D Interior Design - Contact page" src="http://www.antoniowells.com/wp-content/uploads/2008/12/plan-d-interior-contact-300x234.jpg" alt="" width="300" height="234" /></a></p>
<h4>Image Slicing</h4>
<p>Image slicing for the Web in science of its own. You have to balance: Functional Layout, Image Type, and Size File/Compression.</p>
<blockquote><p><strong>Functional Layout</strong></p>
<p>When slicing you have to keep in mind the functional layout and how it correlates to the design.</p>
<p><strong>Image Type</strong></p>
<p>Once you reach a certain apex in this field, you can predetermine the appropriate file type; JPEG, GIF or PNG. JPEG file types are best suited for pictures or graphics that cover a wide color range with the greatest compression. GIF files types are better for images with more flat color ranges and offers great compression (I also use this type for transparent images but it has a drawback of jagged edges). PNG file types offer crystal clear images and transparency without jagged edges but at the sacrifice of a larger file size and compatibility in older browsers. For example, <acronym title="Internet Explorer 6">IE6</acronym>and lower have trouble natively showing transparent PNGs, they display with a light blue or light grey background color, versus transparent.</p>
<p><strong>Size File/Compression</strong></p>
<p>Pay close attention to this area as some designers disregard this area because the average Internet surfer these days have some form of broadband Internet connection, therefore the latency would not be that noticeable. Consider mobile users as the number of mobile devices are increasing. For high traffic websites the total page size should not be so heavy as to decrease the load on your web server(s).</p></blockquote>
<p>One technique I like to use is keeping pre-sliced graphic assets in layered <acronym title="Photoshop Document">PSD</acronym> format separate from the page designs <em>(Why&#8230; when clients change their mind, you can easily revisit)</em>. For example, the logo below originally did not have &#8220;Real Estate&#8221; text. I was able to easily go into the <acronym title="Photoshop Document">PSD</acronym> asset file, add the text and replace the graphic. Additionally, I use the same naming convention of the <acronym title="Photoshop Document">PSD</acronym> file as the finished file to save time renaming. So &#8220;logo_plan-d-real-estate.psd&#8221; could easily save as &#8220;logo_plan-d-real-estate.png&#8221;.</p>
<p><a href="http://www.antoniowells.com/wp-content/uploads/2008/12/plan-d-asset-psd.jpg"><img class="alignnone size-medium wp-image-453" title="Plan D Layered PSD Asset Slice taken from Interior page design" src="http://www.antoniowells.com/wp-content/uploads/2008/12/plan-d-asset-psd-300x234.jpg" alt="" width="300" height="234" /></a></p>
<p>The best way to slice a web page is to analyze the design <em>knowing</em> what elements to make images and what elements should be handles with <acronym title="Cascading Style Sheets">CSS</acronym>, or both! See the numbers on the screen below for tips explanation:</p>
<p><a href="http://www.antoniowells.com/wp-content/uploads/2008/12/plan-d-slicing-explained.jpg"><img class="alignnone size-medium wp-image-454" title="Plan D Sliced Elements Explained" src="http://www.antoniowells.com/wp-content/uploads/2008/12/plan-d-slicing-explained-300x224.jpg" alt="" width="300" height="224" /></a></p>
<ol>
<li>I used <a href="http://www.plandrealestate.com/images/assets/logo_plan-d-real-estate.png" target="_self">PNG img for logo</a> for best background transparency for the brown gradient below it.</li>
<li>The <a href="http://www.plandrealestate.com/images/assets/icon_sitemap.gif">mini icons</a> are placed in the left padding as background images with <acronym title="Cascading Style Styles">CSS</acronym>.</li>
<li><a href="http://www.plandrealestate.com/images/assets/form_textbox-bg.gif">Text fields</a> can use 1 background image and repeat horizontally with <acronym title="Cascading Style Styles">CSS</acronym>.</li>
<li>The <a href="http://www.plandrealestate.com/images/assets/bullet_star.png">star bullets</a> and transparent white are separate images and controlled with <acronym title="Cascading Style Styles">CSS</acronym>.</li>
<li>I used in <a href="http://www.plandrealestate.com/images/assets/bg_services.jpg">page styles</a> to override the default <acronym title="Cascading Style Styles">CSS</acronym> set in the external <acronym title="Cascading Style Styles">CSS</acronym> file. Knowing the <em>rule of thumb</em> with <acronym title="Cascading Style Styles">CSS</acronym> helps; the last referenced Class or ID will display.</li>
<li>Take advantage of the native background repeat behaviour in <acronym title="Hyper-text Markup Language">HTML</acronym> elements. To give it more spice, I made the <a href="http://www.plandrealestate.com/images/assets/bg_common-panel.png">background image transparent</a>, but presents a challenge in <acronym title="Internet Explorer 6">IE6</acronym>.</li>
<li>The <a href="http://www.plandrealestate.com/images/assets/orchid.png">orchid</a> uses <acronym title="Cascading Style Styles">CSS</acronym> layers to float a transparent PNG image slightly over the main panel text.</li>
</ol>
<p>When you slice your web page properly, you notice that the imagery is comprised of much smaller images creatively put together with <acronym title="Cascading Style Styles">CSS</acronym>.</p>
<hr />
<h3>Code &#8211; now we can crack open Dreamweaver</h3>
<p>I had to code the page with respects to 2 aspects. One being the <acronym title="Photoshop Document">PSD</acronym> to <acronym title="Hyper-text Markup Language">HTML</acronym> and the other being coding for CMS Made Simple. The latter will be explained more in detail in the third part of this series.</p>
<p>Why do I need to code the page twice? Not really coding twice, yet the initial coding is done in the <acronym title="Photoshop Document">PSD</acronym> to <acronym title="Hyper-text Markup Language">HTML</acronym> stage. The set of coding for CMS Made Simple comprises of slicing the <acronym title="Photoshop Document">PSD</acronym> to <acronym title="Hyper-text Markup Language">HTML</acronym> code into blocks for the CMS. A CMS Made Simple template, or any <acronym title="Content Management System">CMS</acronym> theme or template, <strong>SHOULD NOT </strong>have content in it. Rather a separation of layers, meaning; the template is usually separated into header, body, and footer. Subsequently, those elements separate, usually in modules, things like navigation, search bars, and widgets. All of the fore mentioned elements are marked up with <acronym title="Cascading Style Sheets">CSS</acronym> and the content is pulled from the database. This model allows for optimal uses; maintenance, software upgrades, website redesigns, search engine optimization, etc.</p>
<h4><acronym title="Photoshop Document">PSD</acronym> to <acronym title="Extensionable Hyper-text Markup Language">XHTML</acronym></h4>
<p>So what is this &#8220;<acronym title="Photoshop Document">PSD</acronym> to <acronym title="Extensionable Hyper-text Markup Language">XHTML</acronym>&#8221; or &#8220;<acronym title="Photoshop Document">PSD</acronym> to HTML&#8221; anyway? It&#8217;s a design philosophy amongst Web Standards compliant web design. The firm <a title="PSD2HTML.com explains they philosophy best" href="http://www.psd2html.com/about-us.html#slicing-guidelines" target="_blank">PSD2HTML.com explains the philosophy best</a>:</p>
<li>The markup looks exactly the same as the original design</li>
<li><acronym title="Cascading Style Sheets">CSS</acronym> classes and images are intuitively named to correspond to their sense/content</li>
<li>The code is correctly indented to correspond to the nesting level of each element</li>
<li>As an option, the code can be separated into templates represented by logical parts (files), such as navigation, content, header, footer, etc.</li>
<h4>Structure</h4>
<p>Many Web Designers use <a title="article about Wireframes" href="http://www.sitepoint.com/article/wire-frame-your-site/" target="_blank">Wireframes</a> in their design process. I try to avoid them unless; the project is larger involving more web designers or Usability team, corporate clients usually require them (better to show that than your <a title="read the Sketches section of Part 1" href="http://www.antoniowells.com/2008/11/03/anatomy-of-professional-website-design-part-1/" target="_self">Sketches</a>), or when I know I will transferring the design off to another designer.</p>
<p>Since I already established my structure from the Sketches, I start laying out the design as if there would be no <acronym title="Content Management System">CMS</acronym> applied to it. I do this for an Interior page and the Home page (that&#8217;s all we need). We&#8217;ll use the <acronym title="Content Management System">CMS</acronym> to fill out most of the other pages.</p>
<p><a href="http://www.antoniowells.com/wp-content/uploads/2008/12/plan-d-bio-dreamweaver.jpg"><img class="size-thumbnail wp-image-461 alignnone" title="Plan D Interior page in Dreamweaver" src="http://www.antoniowells.com/wp-content/uploads/2008/12/plan-d-bio-dreamweaver-300x234.jpg" alt="Plan D Interior page in Dreamweaver" width="300" height="234" /></a></p>
<h4>Valid <acronym title="Extensionable Hyper-text Markup Language">XHTML</acronym> &amp; <acronym title="Cascading Style Sheets">CSS</acronym></h4>
<p>One important thing we shouldn&#8217;t forget, validating our XHTML and <acronym title="Cascading Style Sheets">CSS</acronym> using services like <a title="W3C Validation Service" href="http://validator.w3.org/" target="_blank">W3C Validation Service</a>. I wrote a great article on tips to remember when designing <a title="Web Design Tip: XHTML Strict Transition" href="http://www.antoniowells.com/2008/10/20/web-design-tip-xhtml-strict-transition/">web pages for <acronym title="Extensionable Hyper-text Markup Language">XHTML</acronym> Strict</a>. In the Plan D Real Estate website I designed it for <acronym title="Extensionable Hyper-text Markup Language">XHTML</acronym> Transitional, which <a title="Plan D Real Estate Website design passed XHTML Transitional" href="http://validator.w3.org/check?uri=http%3A%2F%2Fwww.plandrealestate.com&amp;charset=%28detect+automatically%29&amp;doctype=Inline&amp;group=0" target="_blank">passed that standard</a>.</p>
<hr />
<h3>In Conclusion</h3>
<p>This phase of the process shows how you go from the sketches to actually something aesthically pleasing in Photoshop, then using PSD to XHTML techniques to prepare for coding CSS design in Dreamweaver. In the next phase; Development, I&#8217;ll explain how to slice the template for CMS Made Simple and the development effort involved there.</p>
<div class="Downloads">Don’t forget to can stay updated by <a title="grab the RSS Feed" href="http://feeds.feedburner.com/AntonioWells" target="_blank">grabbing the RSS feed</a> or <a title="Stay posted via Email Updates" href="http://www.feedburner.com/fb/a/emailverifySubmit?feedId=2570947&amp;amp;loc=en_US" target="_blank">stay posted via Email Updates</a>.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.antoniowells.com/anatomy-of-professional-website-design-part-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New Social Network Website Launched today AndroidTapp.com</title>
		<link>http://www.antoniowells.com/new-social-network-website-launched-today-androidtapp/</link>
		<comments>http://www.antoniowells.com/new-social-network-website-launched-today-androidtapp/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 18:41:14 +0000</pubDate>
		<dc:creator>Antonio Wells</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Android Apps Market]]></category>
		<category><![CDATA[AndroidTapp.com]]></category>
		<category><![CDATA[Social Network]]></category>
		<category><![CDATA[Website launch]]></category>

		<guid isPermaLink="false">http://www.antoniowells.com/?p=430</guid>
		<description><![CDATA[
I have not been able to post on my Web Design blog in a while because I&#8217;ve been crazy busy multi-tasking the launch of 4 new websites. One in particular just launched today called Android Tapp. Android Tapp is a social network website created to fill the void of many people wanting to see the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.androidtapp.com" target="_blank"><img class="alignnone size-full wp-image-433" title="Screenshot: AndroidTapp.com" src="http://www.antoniowells.com/wp-content/uploads/2008/12/screenshot-android-tapp.jpg" alt="Screenshot: AndroidTapp.com" width="500" height="300" /></a></p>
<p>I have not been able to post on my Web Design blog in a while because I&#8217;ve been crazy busy multi-tasking the <strong>launch of 4 new websites</strong>. One in particular just launched today called <a title="Android Tapp" href="http://www.androidtapp.com" target="_blank">Android Tapp</a>. Android Tapp is a social network website created to fill the void of many people wanting to see the <a title="Android App Market" href="http://www.android.com/market" target="_blank">Android <acronym title="Application">App</acronym> Market</a> created by Google without having an Android powered phone like the <a title="T-Mobile G1" href="http://www.t-mobileg1.com" target="_blank">T-Mobile G1</a>.  The Android Market is comparable to Apple&#8217;s <acronym title="Application">App</acronym> Store for the iPhone. With the Android Market having over 400 <acronym title="Applications">Apps</acronym> <em>(at the time of this post)</em>, users need clear help fishing through which are worth downloading. With that idea sparked many more:</p>
<ul>
<li>You can easily Rate Android <acronym title="Applications">Apps</acronym></li>
<li>Read our concise Reviews about <acronym title="Applications">Apps</acronym></li>
<li>Post your own Comments or Reviews</li>
<li>Interact with <em>rock-star</em> mobile <acronym title="Application">App</acronym> developers, as they are interviewed</li>
<li>Get Freebies like wallpapers, contest giveaways, etc.</li>
<li>And hot-off-the-press News about the Android Market</li>
</ul>
<p><span id="more-430"></span><br />
So whether you&#8217;re a <acronym title="T-Mobile G1">G1</acronym> owner, <acronym title="Technology">tech</acronym> geek or iPhone-hater&#8230; check out the new website. Your feedback is greatly appreciated in the <a href="#Comments">Comments</a> below:</p>
]]></content:encoded>
			<wfw:commentRss>http://www.antoniowells.com/new-social-network-website-launched-today-androidtapp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Interview: Falaah Shabazz &#8211; Photographer, Graphic Designer and Marketer</title>
		<link>http://www.antoniowells.com/interview-falaah-shabazz-photographer-graphic-designer-and-marketer/</link>
		<comments>http://www.antoniowells.com/interview-falaah-shabazz-photographer-graphic-designer-and-marketer/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 15:59:06 +0000</pubDate>
		<dc:creator>Antonio Wells</dc:creator>
				<category><![CDATA[Interviews]]></category>
		<category><![CDATA[Falaah Shabazz]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.antoniowells.com/?p=314</guid>
		<description><![CDATA[
The first interview on AntonioWells.com will start off with a colleague and good friend of mine Falaah Shabazz. Falaah is a Photographer, Graphic Designer and Marketer of Falaah Shabazz Photography. Specializing in commercial, fashion and concept photography and one hell of a graphic designer and marketing guru.
AW: Tell us a little bit about yourself?
FS:Well I was the, Son [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.antoniowells.com/wp-content/uploads/2008/11/woman-red-visor.jpg"><img class="alignnone size-full wp-image-412" title="Woman in Red Visor" src="http://www.antoniowells.com/wp-content/uploads/2008/11/woman-red-visor.jpg" alt="" width="500" height="751" /></a></p>
<p>The first interview on AntonioWells.com will start off with a colleague and good friend of mine <a title="Falaah Shabazz" href="http://www.myspace.com/falaah" target="_blank">Falaah Shabazz</a>. Falaah is a Photographer, Graphic Designer and Marketer of Falaah Shabazz Photography. Specializing in commercial, fashion and concept photography and one hell of a graphic designer and marketing guru.</p>
<p><strong>AW: Tell us a little bit about yourself?</strong></p>
<blockquote><p><strong>FS:</strong>Well I was the, Son of a Share Cropper and&#8230; No, seriously, I am just a regular guy. I am a divorcee with three beautiful children and very single. Unlike a lot of individuals, I have a career that I enjoy and love. Photography allows me to be creative and provides me that much needed outlet to keep from going crazy. Being my own boss and having the ability to control all areas of business is also a plus.. I&#8217;m just big kid too, I love Nitro (gas) powered RC cars &amp; trucks, all types of electronic gadgets and this new organic BBQ popcorn I&#8217;m eating! Ummmmm umm!</p></blockquote>
<p><strong>AW: Why did you want to become a photographer?</strong></p>
<blockquote><p><strong>FS:</strong> In addition to being a photographer, I am a Graphic Designer. I was working on a project for a local band. The previous photographer was not available and I suggested that I shoot their photographs, for a small fee. I picked up the camera and off to the alley we went and amazingly, that is when my love affair with photography began.</p></blockquote>
<p style="text-align: center;"><a href="http://www.antoniowells.com/wp-content/uploads/2008/11/black-and-white.jpg"><img class="alignnone size-medium wp-image-413" title="Black and White" src="http://www.antoniowells.com/wp-content/uploads/2008/11/black-and-white-200x300.jpg" alt="" width="200" height="300" /></a> <a href="http://www.antoniowells.com/wp-content/uploads/2008/11/light-ring.jpg"><img class="alignnone size-medium wp-image-414" title="Light Ring" src="http://www.antoniowells.com/wp-content/uploads/2008/11/light-ring-199x300.jpg" alt="" width="199" height="300" /></a> <a href="http://www.antoniowells.com/wp-content/uploads/2008/11/to-wed.jpg"><img class="alignnone size-medium wp-image-415" title="To Wed" src="http://www.antoniowells.com/wp-content/uploads/2008/11/to-wed-200x300.jpg" alt="" width="200" height="300" /></a></p>
<p><span id="more-314"></span></p>
<p><strong>AW: Why did you want to become a graphic designer?</strong></p>
<blockquote><p><strong>FS:</strong> I was with an independent record label named CWAL were I worked with <a title="THE LEGANDARY TRAXSTER" href="http://www.cwalmob.com/" target="_blank">THE LEGANDARY TRAXSTER</a> as a producer and recording engineer and we were a self contained unit; we did our own recordings, album artwork, posters, mastering, etc. I got kinda good at it, so after I quit the music industry <em>(That music stuff is crazy!)</em>, I still had a good reputation for doing graphic work so I did it as a side hustle, while I worked as a retail store manager for an athletic apparel company. The company went out of business&#8230; I was scared I had 3 kids, a house, a wife, crazy bills and I saw it as my chance to take life, restructure it and try to never let someone control my finances again.</p>
<h3><em>&#8220;I would rather fail myself, then to follow someone else’s lead and fall on my face due the their poor choices that don’t have my future nor my children as a priority.&#8221;</em></h3>
<p>I mean I was making almost the same amount of money doing graphics part time as I was doing 40 hours a week for this retail chain! It only made since to go full time.</p></blockquote>
<p><strong>AW: Why did you get into Marketing?</strong></p>
<blockquote><p><strong>FS:</strong> While designing graphics, you run into people that do not have a clue as to what they want or need for their business. I realized I was creating entire marketing plans for some of my clients and researched the the field and found it to be profitable.</p></blockquote>
<p><strong>AW: What school did you go to?</strong></p>
<blockquote><p><strong>FS:</strong> CVS (Chicago Vocational School)</p></blockquote>
<p><strong>AW: Do you think one needs college or a degree to learn/perfect their skill?</strong></p>
<blockquote><p><strong>FS:</strong> No not at all, Honestly I dropped outta high school in my freshmen year. Dumb&#8230; I know but I made it. I got a full time job, my own place at 16 and put my nose to the grindstone!</p></blockquote>
<p style="text-align: center;"><strong><a href="http://www.antoniowells.com/wp-content/uploads/2008/11/shop-diva.jpg"></a><a href="http://www.antoniowells.com/wp-content/uploads/2008/11/squat.jpg"><img class="alignnone size-medium wp-image-419" title="Squat" src="http://www.antoniowells.com/wp-content/uploads/2008/11/squat-200x300.jpg" alt="" width="200" height="300" /></a> <a href="http://www.antoniowells.com/wp-content/uploads/2008/11/confident-professional.jpg"><img class="alignnone size-medium wp-image-416" title="Confident Professional" src="http://www.antoniowells.com/wp-content/uploads/2008/11/confident-professional-200x300.jpg" alt="" width="200" height="300" /></a> <a href="http://www.antoniowells.com/wp-content/uploads/2008/11/sex-and-the-hood.jpg"><img class="alignnone size-medium wp-image-418" title="Sex and the Hood" src="http://www.antoniowells.com/wp-content/uploads/2008/11/sex-and-the-hood-200x300.jpg" alt="" width="200" height="300" /></a></strong></p>
<p><strong>AW: What inspires and/or motivates you?</strong></p>
<blockquote><p><strong>FS:</strong> The <a title="Bugatti Veyron" href="http://www.bugatti.com/en/home.html" target="_blank">Bugatti Veyron</a>– Yes it is 1.4 million &amp; I will have one lol!</p></blockquote>
<p><strong>AW: What do you do when you get &#8220;designers-block&#8221;?</strong></p>
<blockquote><p><strong>FS:</strong> Take a nap and when I wake up I surf the web for design or photographic inspiration.</p></blockquote>
<p><strong>AW: Do you have a favorite Designer or Photographer and why?</strong></p>
<blockquote><p><strong>FS:</strong> Yes! Too many to name! <em>( &amp; you Antonio <img src='http://www.antoniowells.com/wp-includes/images/smilies/icon_smile.gif' alt=':smile:' class='wp-smiley' />  )</em></p></blockquote>
<p><strong>AW: What advice would you give to an aspiring Graphic Designer?</strong></p>
<blockquote><p><strong>FS:</strong> When doing graphic design for a client, its about the clients&#8217; desires and needs, not bragging right with other designers! And stop using so many damn plug-ins&#8230; be original!</p></blockquote>
<p style="text-align: center;"><strong><a href="http://www.antoniowells.com/wp-content/uploads/2008/11/shop-diva.jpg"><img class="aligncenter size-full wp-image-417" title="Shop Diva" src="http://www.antoniowells.com/wp-content/uploads/2008/11/shop-diva.jpg" alt="" width="500" height="750" /></a></strong></p>
<p><strong>AW: What advice would you give to an aspiring Photographer?</strong></p>
<blockquote><p><strong>FS:</strong> Constantly study your craft and learn to love light, constantly change your style if you do things out of habit when you realize that it’s a habit&#8230; change it!</p></blockquote>
<p><strong>AW: What type of equipment do you use?</strong></p>
<blockquote><p><strong>FS:</strong> Photographic:</p>
<ul>
<li>1) Canon 5D</li>
<li>1) Canon 20D</li>
<li>1) Elinchrom Ranger RX as speed battery pack with</li>
<li>1) A –head</li>
<li>1) S-head</li>
<li>2) 750 watt sec travel lights</li>
<li>1) Canon 50mm 1.4 lens</li>
<li>1) Canon 135mm 2.0 lens</li>
<li>1) Canon 85mm 1.2 lens</li>
<li>1) Canon 28-135mm 3.5 lens</li>
<li>1) Canon 70–200mm 2.8 lens</li>
<li>stands, soft boxes etc.</li>
</ul>
<p>Graphic Design + Photo Processing:</p>
<ul>
<li>MAC Daul 2.3 Ghz Power PC (6 gigs of ram) <img src='http://www.antoniowells.com/wp-includes/images/smilies/icon_eek.gif' alt=':shock:' class='wp-smiley' /> </li>
<li>Samsung 19” monitors</li>
<li><em>Photoshop CS4 with no Plug ins!!!!!!!!!!!!!!</em></li>
</ul>
</blockquote>
<p><strong>AW: PC or Mac?</strong></p>
<blockquote><p><strong>FS:</strong> MAC BABY!!!</p></blockquote>
<p><strong>AW: Do you use music while you work?</strong></p>
<blockquote><p><strong>FS:</strong>Yes, a lotta rap <em>(old skool)</em></p></blockquote>
<p><strong>AW: What are the tools you couldn’t live without?</strong></p>
<blockquote><p><strong>FS:</strong> My G5 &amp; my Camera</p></blockquote>
<p><strong>AW: What upcoming projects are you working on?</strong></p>
<blockquote><p><strong>FS:</strong> I have a photography seminar called <strong>&#8220;The Flex Your Photo Seminar&#8221;</strong> sharing my trade secrets with my peers, covering Creative lighting, shooting techniques, model instruction and photo retouching</p></blockquote>
<p style="text-align: center;"><strong><a href="http://www.antoniowells.com/wp-content/uploads/2008/11/woman-blue-dress-in-leaves.jpg"><img class="size-full wp-image-420 aligncenter" title="Woman Blue Dress in Leaves" src="http://www.antoniowells.com/wp-content/uploads/2008/11/woman-blue-dress-in-leaves.jpg" alt="" width="500" height="750" /></a></strong></p>
<p><strong>AW: Well, the motto on </strong><a title="AntonioWells.com Web &amp; Multimedia Designer" href="http://www.antoniowells.com/"><strong>AntonioWells.com</strong></a><strong> is to give back, or give something free. Is there a Tip, Trick , Technique or Advice that you can share here?</strong></p>
<p>Lighting Corrections using Photoshop CS4</p>
<p><em>A sample of some of the thing to be taught at the 2008 Phlex Your Photo &#8211; Key to success seminar.</em></p>
<p><object type="application/x-shockwave-flash" style="width:580px; height:400px;" data="http://www.youtube.com/v/723ygdlbzLk&amp;rel=0&amp;color1=0x006699&amp;color2=0x54abd6"><param name="movie" value="http://www.youtube.com/v/723ygdlbzLk&amp;rel=0&amp;color1=0x006699&amp;color2=0x54abd6" /></object></p>
<p>Thank you Falaah for that interview, keep up the great work!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.antoniowells.com/interview-falaah-shabazz-photographer-graphic-designer-and-marketer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fresh, a free Theme for BlogEngine.Net</title>
		<link>http://www.antoniowells.com/fresh-a-free-theme-for-blogenginenet/</link>
		<comments>http://www.antoniowells.com/fresh-a-free-theme-for-blogenginenet/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 18:32:57 +0000</pubDate>
		<dc:creator>Antonio Wells</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[BlogEngine.Net]]></category>
		<category><![CDATA[Fresh]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[website templates]]></category>

		<guid isPermaLink="false">http://www.antoniowells.com/?p=402</guid>
		<description><![CDATA[
Fresh is a clean and minimalistic 3 Column BlogEngine.Net Theme suitable for resource blogs or even a company website. Built for BlogEngine.Net Version 1.4.5+ and Widget Ready.
This theme originated from a WordPress theme converted into BlogEngine.Net (an open source .NET blogging project) and I will give it away to the BlogEngine.Net blogger community. I will give away [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.antoniowells.com/wp-content/uploads/2008/11/fresh-for-blogengine-screen.jpg"><img class="alignnone size-full wp-image-406" title="Fresh Theme for BlogEngine.Net" src="http://www.antoniowells.com/wp-content/uploads/2008/11/fresh-for-blogengine-screen.jpg" alt="" width="500" height="350" /></a></strong></p>
<p><strong>Fresh</strong> is a clean and minimalistic 3 Column BlogEngine.Net Theme suitable for resource blogs or even a company website. Built for BlogEngine.Net Version 1.4.5+ and Widget Ready.</p>
<p>This theme originated from a <a title="My other Wordpress Themes" href="http://www.antoniowells.com/category/wordpress-themes/" target="_self">WordPress theme</a> converted into <a title="an open source .NET blogging project" href="http://www.dotnetblogengine.net/" target="_blank">BlogEngine.Net</a> (an open source .NET blogging project) and I will give it away to the BlogEngine.Net blogger community. I will give away the Theme files, source PhotoShop file, and offer support for the theme. <em>(Showin&#8217; luv to my .Net peeps <img src='http://www.antoniowells.com/wp-includes/images/smilies/icon_wink.gif' alt=':wink:' class='wp-smiley' />  )</em></p>
<h3>Features:</h3>
<ul>
<li>3 Columns: Left Content, Left Sidebar, Right Sidebar</li>
<li>Wigdet Ready Right Sidebar</li>
<li>Clean Web 2.0 minimalistic color scheme</li>
<li>Ads can be placed in the Sidebars</li>
<li>Photoshop PSD file included (with some custom icons).</li>
</ul>
<div class="Downloads">
<div class="LeftSplit"><a href="http://www.antoniowells.com/wp-content/plugins/download-monitor/download.php?id=6"><img title="Download It. Get It. Use It!" src="http://www.antoniowells.com/images/download.png" alt="Download It. Get It. Use It!" /></a> <strong>Download It.</strong> Get It. Use It!<br /><span class="SmallText"><em>Downloaded 778 times</em></span></div>
<div class="Clear">&nbsp;</div>
</div>
<h4><em>If you have downloaded Fresh or are using it, leave your website address in the comments…</em></h4>
]]></content:encoded>
			<wfw:commentRss>http://www.antoniowells.com/fresh-a-free-theme-for-blogenginenet/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Anatomy of Professional Website Design &#8211; Part 1</title>
		<link>http://www.antoniowells.com/anatomy-of-professional-website-design-part-1/</link>
		<comments>http://www.antoniowells.com/anatomy-of-professional-website-design-part-1/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 15:32:12 +0000</pubDate>
		<dc:creator>Antonio Wells</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Website Design Anatomy]]></category>
		<category><![CDATA[Color Palettes]]></category>
		<category><![CDATA[Concept to Completion]]></category>
		<category><![CDATA[Creative Direction]]></category>
		<category><![CDATA[Modern Decor Photography]]></category>
		<category><![CDATA[Sitemap]]></category>
		<category><![CDATA[Sketches]]></category>
		<category><![CDATA[Swatches]]></category>
		<category><![CDATA[Typography]]></category>
		<category><![CDATA[Website Design Analysis]]></category>

		<guid isPermaLink="false">http://www.antoniowells.com/?p=335</guid>
		<description><![CDATA[
This article will concentrate on the full Website Design life-cycle, from &#8221;concept-to-completion&#8221;, of a Professional website I recently completed for NAMYnot Multimedia. The goal is to give other aspiring web designers the inside tips, tricks and processes they&#8217;ve been yearning for. This will be a 3 part series:

Creative Direction, Sitemap &#38; Sketches
Design &#38; Development
Flash Animated Introduction

So stay tuned for the complete anatomy (You can [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.antoniowells.com/wp-content/uploads/2008/11/plan-d-website-screenshot.jpg" target="_blank"><img class="alignnone size-medium wp-image-389" title="Anatomy of Professional Website Design - Plan D Real Estate" src="http://www.antoniowells.com/wp-content/uploads/2008/11/plan-d-website.jpg" alt="" width="500" height="300" /></a><a href="http://www.antoniowells.com/wp-content/uploads/2008/11/ist1_5021523-butterfly-on-orchid.jpg"></a></p>
<p>This article will concentrate on the full Website Design life-cycle, from &#8221;concept-to-completion&#8221;, of a Professional website I recently completed for <a title="NAMYnot Multimedia" href="http://www.namynot.com" target="_blank">NAMYnot Multimedia</a>. The goal is to give other aspiring web designers the inside tips, tricks and processes they&#8217;ve been yearning for. This will be a 3 part series:</p>
<ol>
<li>Creative Direction, Sitemap &amp; Sketches</li>
<li>Design &amp; Development</li>
<li>Flash Animated Introduction</li>
</ol>
<div class="Downloads">So stay tuned for the complete anatomy (You can stay updated by <a title="grab the RSS Feed" href="http://feeds.feedburner.com/AntonioWells" target="_blank">grabbing the RSS feed</a> or <a title="Stay posted via Email Updates" href="http://www.feedburner.com/fb/a/emailverifySubmit?feedId=2570947&amp;amp;loc=en_US" target="_blank">stay posted via Email Updates</a>)</div>
<p><strong>Project Synopsis:</strong> The anatomy I&#8217;ll be breaking down is the <a title="Plan D Real Estate" href="http://www.plandrealestate.com" target="_blank">Plan D Real Estate</a> website redesign. Plan D Real Estate offers professional services in Residential Sales and Buyers Representation, Residential and Commercial Interior Design Consultation, and Home Staging incorporating <em>Green</em> sustainable friendly materials in the Chicago Metro area. The client did not want a typical realtor website, instead desired a website that showcased the aesthetics of interior design and <a title="home staging" href="http://en.wikipedia.org/wiki/Home_staging" target="_blank">home staging</a>, as well as a marketing vehicle for the real estate industry.</p>
<p>The scope requested a Flash animated introduction, photo gallery, blog engine, emailing list manager, and the client wanted the ability to manage the content themselves. This instinctively suggested to run the website on a Content Management System. <a title="CMS Made Simple" href="http://www.cmsmadesimple.org" target="_blank">CMS Made Simple</a>, an open source PHP CMS software, was the CMS of choice as it offered all the capability needed natively, and the few features that were not included can be easily downloaded with 3rd party plug-ins. More about the CMS will be covered in Part 2: Design &amp; Development. </p>
<p><span id="more-335"></span></p>
<hr />
<h3>The Creative Direction</h3>
<p>In interviewing the client and learning more about the interior design style, target market, and newly created company brand; I learned they already had a well designed logo and mailer marketing material. It was actually designed by a friend and colleague of mine, <a title="Falaah Shabazz" href="http://www.myspace.com/falaah" target="_blank">Falaah Shabazz</a>. So, the creative direction already had a great start. See below the starting inspiration:</p>
<p><a href="http://www.antoniowells.com/wp-content/uploads/2008/11/marketing-advertising-mailer.jpg"><img class="alignnone size-medium wp-image-338" title="Plan D Marketing Advertising Mailer" src="http://www.antoniowells.com/wp-content/uploads/2008/11/marketing-advertising-mailer-300x217.jpg" alt="" width="300" height="217" /></a></p>
<p>There are several elements from this marketing mailer piece alone to build a creative direction from&#8230; lets start the anatomy:</p>
<p><strong>Warm, Earthy yet Vibrant Color Palette</strong></p>
<p><a title="Color Swatch" href="http://kuler.adobe.com/#themeID/292328" target="_blank"><img class="alignnone size-medium wp-image-349" title="Plan D Website Color Swatch" src="http://www.antoniowells.com/wp-content/uploads/2008/11/plan-d-website-color-swatch-300x53.gif" alt="" width="300" height="53" /></a><a href="http://www.antoniowells.com/wp-content/uploads/2008/11/plan-d-website-color-swatch.gif"></a></p>
<p>When you see the color choice, it immediately &#8220;pops&#8221; the design, yet the various shades of brown warms the palette. I have attached the core color scheme as a PhotoShop Swatch, download the <a class="downloadlink" href="http://www.antoniowells.com/wp-content/plugins/download-monitor/download.php?id=5" title="Version 1.0 downloaded 186 times" >Plan D Website Color Swatches</a> Palette. Additionally, I&#8217;ve listed the hexi-decimal color values below:</p>
<p><span style="font-weight: bold; color: #4590bf;">Blue: #4590BF</span><br />
<span style="font-weight: bold; color: #82bf45;">Green: #82BF45</span><br />
<span style="font-weight: bold; color: #593f2f;">Brown: #593F2F</span><br />
<span style="font-weight: bold; color: #f25d27;">Orange 1: #F25D27</span><br />
<span style="font-weight: bold; color: #f2522e;">Orange 2: #F2522E</span></p>
<p><em>Swatches created with </em><a title="Created with Adobe Kuler" href="http://kuler.adobe.com/#themeID/292328" target="_blank"><em>Adobe Kuler</em></a></p>
<p><strong>Details, Details, Details&#8230;</strong></p>
<p>Let&#8217;s first look at the logo brand. The mixture of script typography and serif face type for the &#8220;D&#8221;. Notice the lineart 3D tree, glossy star bullets, measurements, and schematics details that correlates to the brand. These details, such as the glossy star bullets and measurements, were used in the website design in the header navigation. I wanted to transfer as many creative details and elements into the website as possible.</p>
<p><a href="http://www.antoniowells.com/wp-content/uploads/2008/11/logo-details-5.jpg"><img class="size-medium wp-image-363" title="Logo Details - Script Typography" src="http://www.antoniowells.com/wp-content/uploads/2008/11/logo-details-5.jpg" alt="Logo Details - Script Typography" width="161" height="149" /></a> <a href="http://www.antoniowells.com/wp-content/uploads/2008/11/logo-details-1.jpg"><img class="size-medium wp-image-353" title="Logo Details - &quot;D&quot; of Logo" src="http://www.antoniowells.com/wp-content/uploads/2008/11/logo-details-1-300x266.jpg" alt="Logo Details - &quot;D&quot; of Logo" width="180" height="160" /></a> <a href="http://www.antoniowells.com/wp-content/uploads/2008/11/logo-details-2.jpg"><img class="size-medium wp-image-354  " title="Logo Details - Measurements and Schematics" src="http://www.antoniowells.com/wp-content/uploads/2008/11/logo-details-2.jpg" alt="Logo Details - Measurements and Schematics" width="118" height="107" /></a> <a href="http://www.antoniowells.com/wp-content/uploads/2008/11/logo-details-3.jpg"><img class="size-medium wp-image-355    " title="Logo Details - Bullets" src="http://www.antoniowells.com/wp-content/uploads/2008/11/logo-details-3.jpg" alt="Logo Details - Bullets" width="81" height="86" /></a> <a href="http://www.antoniowells.com/wp-content/uploads/2008/11/logo-details-4.jpg"><img class="size-medium wp-image-362" title="Logo Details - Lowercase &quot;d&quot; Typography outlines" src="http://www.antoniowells.com/wp-content/uploads/2008/11/logo-details-4.jpg" alt="Logo Details - Lowercase &quot;d&quot; Typography outlines" width="103" height="109" /></a> <a href="http://www.antoniowells.com/wp-content/uploads/2008/11/logo-details-51.jpg"><img class="alignnone size-medium wp-image-367" title="Header Navigation Details" src="http://www.antoniowells.com/wp-content/uploads/2008/11/logo-details-51.jpg" alt="" width="264" height="137" /></a></p>
<p><strong>Typography</strong></p>
<p>Typography in the mailer piece has the liberty of exotic off-springs of Times Roman font, the Web is a different story. With only a handful of fonts to choose from, I chose to use Times Roman for navigation and sub-navigation (using CSS to transform the text in all caps), Georgia for H1-H5 page headers, and Trebuchet MS in content areas for readability with finesse.</p>
<p><strong>Modern Decor Home Staging Photographic Creative Direction</strong></p>
<p>The interior design style of the client was modern, chic, &#8220;green&#8221; with slight oriental accents. Being a designer for a while, sometimes you notice right away where the stock imagery came from. I recognized some of the photos from iStockPhoto. So I logged into my account and purchased licenses for similar imagery. You can view my <a title="iStockPhoto Designer's Spotlight" href="http://uploads.istockphoto.com/design_spotlight_details.php?ID=21920" target="_blank">Designer&#8217;s Spotlight of all the imagery</a> used in the final website.</p>
<p><a href="http://uploads.istockphoto.com/file_closeup/architecture-and-buildings/3297538-home-interior-with-fireplace-and-sofas-3d-rendering.php?id=3297538" target="_blank"><img class="alignnone size-medium wp-image-340" title="Home Interior with fireplace and sofas 3D rendering" src="http://www.antoniowells.com/wp-content/uploads/2008/11/ist1_3297538-home-interior-with-fireplace-and-sofas-3d-rendering.jpg" alt="" width="110" height="83" /></a> <a href="http://uploads.istockphoto.com/file_closeup/celebrations-holidays/4113182-lounge.php?id=4113182" target="_blank"><img class="alignnone size-medium wp-image-342" title="Contemporary Lounge" src="http://www.antoniowells.com/wp-content/uploads/2008/11/ist1_4113182-lounge.jpg" alt="" width="74" height="110" /></a> <a href="http://uploads.istockphoto.com/file_closeup/architecture-and-buildings/homes/4705115-modern-kitchen.php?id=4705115" target="_blank"><img class="alignnone size-medium wp-image-343" title="Modern Kitchen" src="http://www.antoniowells.com/wp-content/uploads/2008/11/ist1_4705115-modern-kitchen.jpg" alt="" width="110" height="69" /></a> <a href="http://uploads.istockphoto.com/file_closeup/objects-equipment/3522145-contemporary-interior-02.php?id=3522145" target="_blank"><img class="alignnone size-medium wp-image-341" title="Contemporary Interior" src="http://www.antoniowells.com/wp-content/uploads/2008/11/ist1_3522145-contemporary-interior-02.jpg" alt="" width="78" height="110" /></a></p>
<p>I also wanted to make some part of the design &#8220;outside-of-the-box&#8221;. To explain, I recalled a CSS Web Design article I read on SitePoint by Jina Bolton <a href="http://www.sitepoint.com/article/breaking-out-of-the-box/" target="_blank">Breaking Out of the Box with CSS Layouts</a>. The image of the orchid and butterfly then became a focal element of the design, in which the butterfly will be used later in a Flash animated intro. I wanted the orchid to organically appear, fuse into, and overlay the design. In Part 2: Design &amp; Development; of this anatomy I will share how I used CSS layering and PNG image transparency to achieve this effect.</p>
<p><a href="http://uploads.istockphoto.com/file_closeup/isolated-objects/5021523-butterfly-on-orchid.php?id=5021523" target="_blank"><img class="alignnone size-medium wp-image-370" title="Butterfly on Orchid" src="http://www.antoniowells.com/wp-content/uploads/2008/11/ist1_5021523-butterfly-on-orchid.jpg" alt="" width="83" height="110" /></a></p>
<hr />
<h3>The Sitemap</h3>
<p>The web sitemap is an integral part of building the website as it determines structure; whether sub-navigation is necessary, what categories are needed, and determine the functionality needed in the CMS. Plan D&#8217;s sitemap was fairly simple and only went 3-4 nodes deep:</p>
<ul>
<li>Home
<ul>
<li>Bio
<ul>
<li>Accreditations</li>
</ul>
</li>
<li>Services
<ul>
<li>Home Sales</li>
<li>Marketing &amp; Advertising
<ul>
<li>Gallery</li>
</ul>
</li>
<li>Interior Design &amp; Home Staging
<ul>
<li>Gallery</li>
</ul>
</li>
</ul>
</li>
<li>Gossip (Blog)</li>
<li>Raves (Client Testimony)</li>
<li>Tips
<ul>
<li>Home Buying Articles and Advice</li>
<li>Home Selling Articles and Advice</li>
</ul>
</li>
<li>Contact</li>
</ul>
</li>
</ul>
<p>In building the sitemap, I confirmed the need for header navigation and sub-navigation respective to the category.</p>
<hr />
<h3>The Sketches</h3>
<p>Upon gathering a lot of information and establishing a creative direction, I was able to start sketching. I have always sketched web pages on paper before starting, but it was only until recent years I understood the significance of this. Sketching in web design gives you the opportunity to quickly draw what the user interface will look like, build structure and layout, placement of elements, factoring usability, jot notes, etc. It&#8217;s an area for trial and error. It is better to make mistakes here than to do it in Photoshop or when converting to HTML <em>(PSD to CSS/XHTML as they nickname it)</em>.</p>
<div id="attachment_374" class="wp-caption alignnone" style="width: 310px"><a href="http://www.antoniowells.com/wp-content/uploads/2008/11/plan-d-website-sketches.gif"><img class="size-medium wp-image-374" title="Plan D Website Sketches" src="http://www.antoniowells.com/wp-content/uploads/2008/11/plan-d-website-sketches-300x213.gif" alt="Plan D Website Sketches" width="300" height="213" /></a><p class="wp-caption-text">Plan D Website Sketches gave me an opportunity to establish page structure, draft the homepage splash, interior pages, and other notes.</p></div>
<p>If you&#8217;ve examined the above image, you&#8217;ll notice I had sub-navigation in the first few sketches on the left, but the final sketch was placed on the right. You can also see minor header, sidebar, content area and footer design styles. If you squint hard enough, you&#8217;ll see my notes about the &#8220;outside-of-the-box&#8221; orchid, notes for width pixel measurements and visual effects to apply.</p>
<hr />Armed with my creative direction, sitemap and sketches I am ready to crack open PhotoShop an start designing. This will be discussed in the next article about Design &amp; Development. Which will focus on pulling all the design elements together, properly converting PSD to CSS/XHTML and integrating into a backend Content Management System.</p>
<h3>In Conclusion</h3>
<p>This method of web design is my personal approach, my set of processes that work, and are rock solid for me. <em>(In a future blog article I will share the 1 time I did not follow my process and the project almost was a disaster)</em>. So hopefully the first part of this series gave some insight on the creative thought process of designing a professional website.</p>
<div class="Downloads">Don&#8217;t forget to can stay updated by <a title="grab the RSS Feed" href="http://feeds.feedburner.com/AntonioWells" target="_blank">grabbing the RSS feed</a> or <a title="Stay posted via Email Updates" href="http://www.feedburner.com/fb/a/emailverifySubmit?feedId=2570947&amp;amp;loc=en_US" target="_blank">stay posted via Email Updates</a>.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.antoniowells.com/anatomy-of-professional-website-design-part-1/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
