<?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>Web Designer Online &#187; Featured Articles</title>
	<atom:link href="http://www.webdesigneronline.co.uk/category/featured-articles/feed" rel="self" type="application/rss+xml" />
	<link>http://www.webdesigneronline.co.uk</link>
	<description>Web Designer Online</description>
	<lastBuildDate>Thu, 29 Jul 2010 09:40:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Some useful Magento template code snippets</title>
		<link>http://www.webdesigneronline.co.uk/some-useful-magento-template-code-snippets</link>
		<comments>http://www.webdesigneronline.co.uk/some-useful-magento-template-code-snippets#comments</comments>
		<pubDate>Sat, 17 Jul 2010 00:33:22 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Featured Articles]]></category>

		<guid isPermaLink="false">http://www.webdesigneronline.co.uk/?p=576</guid>
		<description><![CDATA[Over the last 2 month, I’ve built a few Magento sites during which I’ve had certain requests to add some basic extras to the site template – basic it may sound however if you have even a little experience with Magento, you’ll be aware of its complexity.
Product Reviews and Review form in a tab
1. Add [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2Fsome-useful-magento-template-code-snippets"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2Fsome-useful-magento-template-code-snippets" height="61" width="51" /></a></div><p>Over the last 2 month, I’ve built a few Magento sites during which I’ve had certain requests to add some basic extras to the site template – basic it may sound however if you have even a little experience with Magento, you’ll be aware of its complexity.</p>
<h2>Product Reviews and Review form in a tab</h2>
<p><strong>1. Add the following:</strong></p>
<div class="codesnip-container" >&lt;catalog_product_view&gt;<br />
&lt;reference name=&#8221;product.info.tabs&#8221;&gt;<br />
&lt;block type=&#8221;review/form&#8221; name=&#8221;product.review.form&#8221;  as=&#8221;review_form&#8221;/&gt;<br />
&lt;action method=&#8221;addTab&#8221; translate=&#8221;title&#8221; module=&#8221;review&#8221;&gt;<br />
&lt;alias&gt;avis&lt;/alias&gt;<br />
&lt;title&gt;Avis / commentaires&lt;/title&gt;<br />
&lt;block&gt;review/product_view_list&lt;/block&gt;<br />
&lt;template&gt;review/product/view/list.phtml&lt;/template&gt;<br />
&lt;/action&gt;<br />
&lt;/reference&gt;</div>
<p><strong>2. Add</strong></p>
<div class="codesnip-container" >&lt;?php<br />
layout = Mage::getSingleton(&#8217;core/layout&#8217;);<br />
$block = $layout-&gt;getBlock(&#8217;content&#8217;)-&gt;getChild(&#8217;product.info&#8217;)-&gt;getChild(&#8217;info_tabs&#8217;)-&gt;getChild(&#8217;review_form&#8217;);<br />
echo $block-&gt;toHtml();<br />
?&gt;</div>
<p>to <em>app/design/frontend/[your_theme]/template/review/product/list.phtml</em></p>
<p><strong>Note: For the above to work, your theme should already be using product tabs (Many tutorials are available online if you don’t have tabs)</strong></p>
<p><em>Source: <a href="http://www.magentocommerce.com/boards/viewthread/31712/">http://www.magentocommerce.com/boards/viewthread/31712/</a></em></p>
<h2>Show Sub-Categories (as images with text) on Category or product Pages (and sort by name)</h2>
<p>If a category contains both products and further sub-categories, then this code can be used so such a category shows both products and sub-categories.</p>
<p>Add the following:</p>
<div class="codesnip-container" >&lt;?php<br />
function sortCategories($a, $b) {<br />
return strcmp($a['name'], $b['name']);<br />
}<br />
?&gt;<br />
&lt;?php<br />
$obj = new Mage_Catalog_Block_Navigation();<br />
$cat = Mage::getModel(&#8217;catalog/category&#8217;)-&gt;load($obj-&gt;getCurrentCategory()-&gt;getId()); //get current cat<br />
$subcats = $cat-&gt;getChildren(); // Get sub cats<br />
// loop on it<br />
if ($subcats) { ?&gt;<br />
&lt;h2 class=&#8221;catptitle&#8221;&gt;Sub-categories&lt;/h2&gt;<br />
&lt;?php }<br />
$categoryArray = array();<br />
foreach(explode(&#8217;,',$subcats) as $subCatid){ // split up the mage data for use<br />
$_category = Mage::getModel(&#8217;catalog/category&#8217;)-&gt;load($subCatid);<br />
if($_category-&gt;getIsActive()){<br />
$caturl  = $_category-&gt;getURL(); // get link to image<br />
$catname = $_category-&gt;getName(); // get the name<br />
$catdesc = $_category-&gt;getDescription(); // get the name<br />
if($_category-&gt;getImageUrl()){<br />
$catimg = $_category-&gt;getImageUrl(); // hey, we got image<br />
}else{<br />
$catimg=null;<br />
continue;<br />
} // this is the basic testing data, format as desired &amp; good luck!<br />
$catdescTwo = substr(strip_tags($catdesc), 0, 70);<br />
$categoryArray[] = array(<br />
&#8216;name&#8217; =&gt; $catname,<br />
&#8216;url&#8217; =&gt; $caturl,<br />
&#8216;desc&#8217; =&gt; $catdescTwo,<br />
&#8216;img&#8217; =&gt; $catimg<br />
);<br />
}<br />
}<br />
usort($categoryArray, &#8220;sortCategories&#8221;);<br />
foreach ($categoryArray as $categoryItem) {<br />
echo &#8216;&lt;a  href=&#8221;&#8216;.$categoryItem['url'].&#8217;&#8221;&gt;&#8217;.$categoryItem['name'].&#8217;&lt;/a&gt;<br />
&lt;a href=&#8221;&#8216;.$categoryItem['url'].&#8217;&#8221;&gt;&lt;img alt=&#8221;" src=&#8221;&#8216;.$categoryItem['img'].&#8217;&#8221; /&gt;&lt;/a&gt;<br />
&#8216;.$categoryItem['desc'].&#8217;&#8230;&#8217;;<br />
}<br />
?&gt;</div>
<p>to <em>app/design/frontend/[your_theme]/template/catalog/category/list.phtml</em></p>
<p><strong>OR</strong> <em>app/design/frontend/[your_theme]/template/catalog/product/list.phtml</em></p>
<h2>Display RSS Feed items</h2>
<p><strong>Step 1</strong></p>
<p>Create a file called latest_news.phtml in <em>app/design/frontend/default/[your_theme]/template/callouts/latest_news.phtml</em> with the following:</p>
<div class="codesnip-container" >&lt;?php $channel = new Zend_Feed_Rss(&#8217;INSERT FEED URL&#8217;); ?&gt;<br />
&lt;div class=&#8221;block block-latest-news&#8221;&gt;<br />
&lt;div class=&#8221;sideBestS&#8221;&gt;<br />
&lt;h2&gt;&lt;?php echo $this-&gt;__(&#8217;Latest News&#8217;) ?&gt;&lt;/h2&gt;<br />
&lt;/div&gt;<br />
&lt;div class=&#8221;block-content&#8221;&gt;<br />
&lt;ol id=&#8221;graybox-latest-news&#8221;&gt;<br />
&lt;?php $i = 0; ?&gt;<br />
&lt;?php foreach ($channel as $item): ?&gt;<br />
&lt;?php if ($i != 3) { ?&gt;<br />
&lt;li&gt;&lt;a href=&#8221;&lt;?php echo $item-&gt;link; ?&gt;&#8221;&gt;&lt;?php echo $item-&gt;title; ?&gt;&lt;/a&gt;<br />
&lt;p&gt;&lt;?php echo substr($item-&gt;description,0,179) . &#8220;&#8230;&#8221;; ?&gt;&lt;/p&gt;<br />
&lt;/li&gt;<br />
&lt;?php $i++; ?&gt;<br />
&lt;?php } ?&gt;<br />
&lt;?php endforeach; ?&gt;<br />
&lt;/ol&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;</div>
<p><strong>Step 2 </strong></p>
<p>Add the following:</p>
<div class="codesnip-container" >&lt;reference name=&#8221;right&#8221;&gt;<br />
&lt;block type=&#8221;core/template&#8221; name=&#8221;top.search&#8221; as=&#8221;topSearch&#8221; template=&#8221;catalogsearch/form.mini.phtml&#8221;/&gt;<br />
&lt;block type=&#8221;core/template&#8221; name=&#8221;right.permanent.callout&#8221; template=&#8221;callouts/right_col.phtml&#8221;/&gt;<br />
&lt;block type=&#8221;core/template&#8221; name=&#8221;right.latest.news&#8221; template=&#8221;callouts/latest_news.phtml&#8221;/&gt;<br />
&lt;/reference&gt;</div>
<p>to <em>app/design/frontend/[your_theme]/layout/page.xml</em></p>
<p><strong>Note:</strong> The above will add the code to the right sidebar – you can reference it elsewhere on the site</p>
<h2>Display a product’s “quantity in stock” on your Product Pages</h2>
<div class="codesnip-container" >&lt;?php $stock_count = (int) Mage::getModel(&#8217;cataloginventory/stock_item&#8217;)-&gt;loadByProduct($this-&gt;getProduct())-&gt;getQty(); ?&gt;</div>
<p>&lt;?php echo $stock_count ?&gt;</p>
<h2>Flush/force DNS (Windows only)</h2>
<p>Many a time, when you change the DNS records and nameservers of a domain to point to the new site, it can take up to 72 hours to propagate over the internet. Unfortunately sometimes, the client/customer/general users may see the new site before the developer and if there are any issues then the developer won’t be able to fix them until they can see the new site. Previously i used to wait like anybody else however recently a colleague showed me a method by which I can force my browser to  view the new site!</p>
<p><strong>Step 1:</strong></p>
<p>Open command promt (search/run &#8220;CMD&#8221; in windows)</p>
<p>In Command promt, type the following:</p>
<p>“ipconfig /flushdns”</p>
<p><a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/80f1e14d9fad_0/image.png"><img class="wlDisabledImage" style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/80f1e14d9fad_0/image_thumb.png" border="0" alt="image" width="694" height="218" /></a></p>
<p><strong>Step 2</strong></p>
<p>Go to the folder:</p>
<p>%SystemRoot%\system32\drivers\etc\</p>
<p>For windows 7, %SystemRoot% is C:\Windows\</p>
<p>For windows XP, it may be a little different.</p>
<p>Inside the folder “etc” is a file named – “hosts”. Open this with Notepad and add the line</p>
<p>xx.xxx.xxx.xx <a href="http://www.YOUR-DOMAIN.co.uk">www.YOUR-DOMAIN.co.uk</a></p>
<p>At the bottom of the file (where xx.xxx.xxx.xx is the ip address of the new host)</p>
<p>Then you will have to clear your browser cache.</p>
<h2>Ecommerce tracking in Magento Using Google Analytics</h2>
<p>This one is simple.</p>
<p>Go to System &gt; Configuration &gt; Google API and insert you analytics ID.</p>
<p><strong>Then</strong></p>
<ul>
<li>login to Google analytics</li>
<li>Select the account for your site</li>
<li>Click edit</li>
<li>on “Main Website Profile Information”, click edit</li>
<li>tick the radio button “Yes, an E-Commerce site”</li>
</ul>
<h2>Site search tracking in Magento Using Google Analytics</h2>
<ul>
<li>login to Google analytics</li>
<li>Select the account for your site</li>
<li>Click edit</li>
<li>on “Main Website Profile Information”, click edit</li>
<li>tick the radio button “Do Track Site Search”</li>
<li>insert the letter “q” in the input box</li>
</ul>
<h2>Display PHTML files in Dreamweaver</h2>
<p><a title="http://www.dreamweaverclub.com/dreamweaver-phtml-inc.php" rel="nofollow" href="http://www.dreamweaverclub.com/dreamweaver-phtml-inc.php" target="_blank">http://www.dreamweaverclub.com/dreamweaver-phtml-inc.php</a></p>
<h2>Conclusion</h2>
<p>Is there anything else you would like to do with Magento? leave a note below and I&#8217;ll see what i can do!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigneronline.co.uk/some-useful-magento-template-code-snippets/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Is Your Web Design Driving Customers Away?</title>
		<link>http://www.webdesigneronline.co.uk/is-your-web-design-driving-customers-away</link>
		<comments>http://www.webdesigneronline.co.uk/is-your-web-design-driving-customers-away#comments</comments>
		<pubDate>Sat, 12 Jun 2010 15:59:02 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Featured Articles]]></category>

		<guid isPermaLink="false">http://www.webdesigneronline.co.uk/?p=559</guid>
		<description><![CDATA[Nowadays, websites have become so critical to the success of practically any company.
A good website in many cases can spell the difference between a viable business enterprise and a failed disaster. It is true that a poorly laid out website can actually drive the firm or sole proprietor&#8217;s potential customers away.
With so many competitors only [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2Fis-your-web-design-driving-customers-away"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2Fis-your-web-design-driving-customers-away" height="61" width="51" /></a></div><p>Nowadays, websites have become so critical to the success of practically any company.</p>
<p>A good website in many cases can spell the difference between a viable business enterprise and a failed disaster. It is true that a poorly laid out website can actually drive the firm or sole proprietor&#8217;s potential customers away.</p>
<p>With so many competitors only a mouse click away, the website in question needs to be both attractive, easy to use, and cutting edge all at once.</p>
<h2>Ensure that the Price List is Easily Available</h2>
<p><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/IsYourWebDesignDrivingCustomersAway_AEED/image_thumb.png" border="0" alt="image" width="370" height="252" /></p>
<p>Customers can not purchase a company&#8217;s products or services if they are not easily able to figure out what they cost. A business or individual ought to go out of their way to ensure that it is simple for any visitors to the site to reference and understand their price list.</p>
<p>There are websites which actually try to conceal their price lists for their various goods. They will not give a price until a customer selects the order or buy button. Sometimes, they even make the potential customer wait until an account has been set up on the site to divulge this critical information.</p>
<p>Whatever the logic behind these types of actions truly is, they only harm the prospects of the seller in the end. If the visitor is only window shopping and wants to write down the price for possibly coming back to purchase it later, be sure that he or she will not hunt around the website for a long time looking for it. Rather, he or she will just go to another <a rel="nofollow" href="http://en.wikipedia.org/wiki/Electronic_commerce" target="_blank">e-commerce website</a> instead, one where the seller is upfront with his or her pricing information.</p>
<p>Remember that numerous Internet experts have claimed that the typical Internet surfer possesses the same attention span as a flea does.</p>
<h2>Offer Both Descriptions and Pictures for All Products and Services</h2>
<p><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/IsYourWebDesignDrivingCustomersAway_AEED/image_thumb_3.png" border="0" alt="image" width="370" height="252" /></p>
<p>There has been a raging debate on this topic where company websites are concerned. On the one hand, web designers are told to keep it brief, as they will only get a few minutes, or seconds even, to impress the surfer enough that he or she stays on the website.</p>
<p>On the other, experts recommend that products be well described, and have pictures as well, in order to thoroughly impress a potential client. There is a happy medium ground which will meet both objectives.</p>
<p>Amazon proves to be an effective example of the way that this can be properly and effectively accomplished. They put up a short description, a small thumbnail type of picture, the cost of the item, and a link to see more information on the item, as well as to purchase it.</p>
<p>The point is that Amazon does have a full product description page for all items somewhere on the website. This sort of description and picture process is critical for a successful website. In particular, if the product being considered has many competitors offering it, or proves to be fairly expensive, then this becomes even more important.</p>
<p>Put simply, these product descriptions and pictures are like salesmen pushing a certain product to a walk in customer. On the top of this description page, as well as at the bottom, the vendor should have an Order Now or Buy button.</p>
<p>The key is to make it as simple as possible for the potential customers to complete the sale once they are convinced.</p>
<h2>Make It Simple for Customers to Browse the Website However They Would Prefer</h2>
<p><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image001" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/IsYourWebDesignDrivingCustomersAway_AEED/clip_image001_thumb.jpg" border="0" alt="clip_image001" width="370" height="271" /></p>
<p>There are all too many websites which lock the visitor into a pre-arranged sales pitch. First, the user is forced to read the authoring company or individual&#8217;s introduction on the product itself. Once the tiring tome is completely read, a link to the next page magically appears at the bottom of this particular web page.</p>
<p>The message on the second page must be endured before the user is allowed to move forward, once again. Although the individual might have already chosen to purchase the product, he or she is simply not allowed to skip all of the propaganda to get to the checkout page. This is too much like a high pressure salesman tactic, and it certainly leaves a negative impression on any visitor.</p>
<h2>Simple to Use and Intuitive Navigation</h2>
<p><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/IsYourWebDesignDrivingCustomersAway_AEED/image_thumb_4.png" border="0" alt="image" width="370" height="299" /></p>
<p>If the navigation of a website is not simple and straightforward for the visitor to figure out, then the website usability factor is particularly low. This will likely discourage anyone who might simply wish to buy an item on impulse.</p>
<p>A golden rule to run a company or sole proprietor website by is that the customer must not ever be made to click his or her way through numerous pages before he or she is permitted to get to the download or buy now buttons. This is the fastest way to drive away a good portion of the visitors who came to the website looking to purchase a good or service in the first place.</p>
<h2>Keeping the Website Simple, Staying Away From Flash, and Appropriate Use of Colours</h2>
<p><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="clip_image005" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/IsYourWebDesignDrivingCustomersAway_AEED/clip_image005_thumb.jpg" border="0" alt="clip_image005" width="320" height="276" /></p>
<p>Complex websites do nothing to help a business&#8217; cause with Internet surfers. When they are not able to quickly and easily find the features and products that they are seeking, they are likely to simply go to a competitor&#8217;s site which is easier to understand. Staying away from the use of flash is a related point.</p>
<p>Since everyone is using a different specification of computer and Internet connection speed, the business should avoid flashy websites which look good in theory, but in practice, may keep a potential customer from being able to quickly access the website, or even require that he or she downloads missing plug ins along the way.</p>
<p>A last point to consider concerns <a rel="nofollow" href="http://www.w3schools.com/Html/html_colors.asp" target="_blank">the colours used on a website</a>. One thing that ought to be remembered for certain involves avoiding colours which clash. Do not use a dark colour on a black background, for example. This could make it hard for some users to distinguish the text from the background. Once again, anything that makes it more difficult for the user is likely to cause them to disengage and leave the site.</p>
<h2>Conclusion</h2>
<p>The best thing that a business&#8217; website can possibly do is to make the majority of important links easily available from literally each and every page of their website.</p>
<p>In simply putting them up on the navigation bar, this is most easily achieved. Businesses must never forget that truly great customer service over the Internet begins with an simple to use website. And having a readily available and reliable business website starts with <a href="http://www.webhostingsearch.com/ecommerce-web-hosting.php" target="_blank">finding a trusted e-commerce hosting provider</a>.</p>
<p>How the business or sole proprietor designs and maintains their website will certainly determine if a given visitor will turn into a buying customer, or go on to become the customer of a competitor, instead.</p>
<div class="guest">
<h3>About the Author:</h3>
<p><img title="clip_image00logo" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/IsYourWebDesignDrivingCustomersAway_AEED/whsLogo.png" border="0" alt="clip_image005" width="265" height="39" /></p>
<p><a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/IsYourWebDesignDrivingCustomersAway_AEED/whsLogo.png"></a>Rebecca Wright is a 34-year-old native of Florida. She has a knack for details on web hosting and anything about it. She works full time as a Senior Web Copywriter for one of the country&#8217;s <a href="http://www.webhostingsearch.com">leading e-commerce web hosting company</a>.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigneronline.co.uk/is-your-web-design-driving-customers-away/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Some Interesting Usability Statistics</title>
		<link>http://www.webdesigneronline.co.uk/some-interesting-usability-statistics</link>
		<comments>http://www.webdesigneronline.co.uk/some-interesting-usability-statistics#comments</comments>
		<pubDate>Sun, 16 May 2010 14:50:15 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.webdesigneronline.co.uk/?p=546</guid>
		<description><![CDATA[More and more people are realising the importance of Web Usability and the benefits it can bring. A quick search on Google will yield thousands of examples.
My aim for this article is not to explain usability in detail or explain it’s need and importance, rather I’m going to present some very interesting statistics of how [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2Fsome-interesting-usability-statistics"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2Fsome-interesting-usability-statistics" height="61" width="51" /></a></div><p>More and more people are realising the importance of Web Usability and the benefits it can bring. A quick search on Google will yield thousands of examples.</p>
<p>My aim for this article is not to explain usability in detail or explain it’s need and importance, rather I’m going to present some very interesting statistics of how users use a website depending on various factors.</p>
<p>All the stats should be self-explanatory…</p>
<p><em>*These statistics have been gathered from various sources outlined below.</em></p>
<h2>Success Rates and Experience</h2>
<table border="1" cellspacing="0" cellpadding="2" width="499">
<tbody>
<tr>
<td width="164"><strong>Web Experience</strong></td>
<td width="205"><strong>Site-Specific Tasks</strong></td>
<td width="128"><strong>Web-Wide Tasks</strong></td>
</tr>
<tr>
<td width="164">Low</td>
<td width="205">59%</td>
<td width="128">52%</td>
</tr>
<tr>
<td width="164">High</td>
<td width="236">72%</td>
<td width="196">67%</td>
</tr>
</tbody>
</table>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/UsabilityCheetSheet_1134F/image_thumb.png" border="0" alt="image" width="501" height="309" /></p>
<h2>Average Time Spent on the homepage</h2>
<table border="1" cellspacing="0" cellpadding="2" width="500">
<tbody>
<tr>
<td width="216"><strong>Web Experience</strong></td>
<td width="282"><strong>Time on Homepage (Seconds)</strong></td>
</tr>
<tr>
<td width="216">Low</td>
<td width="282">35</td>
</tr>
<tr>
<td width="216">High</td>
<td width="343">25</td>
</tr>
</tbody>
</table>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/UsabilityCheetSheet_1134F/image_thumb_3.png" border="0" alt="image" width="501" height="309" /></p>
<p>You only have minimum time to get the message across otherwise you will lose your visitor. Apple probably do it the best:</p>
<p><a rel="nofollow" href="http://www.apple.com/" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/UsabilityCheetSheet_1134F/image_12.png" border="0" alt="image" width="514" height="333" /></a></p>
<h2>Page Views by the Screenful</h2>
<table border="1" cellspacing="0" cellpadding="2" width="500">
<tbody>
<tr>
<td width="94"></td>
<td width="163"><strong>Time on Homepage (seconds)</strong></td>
<td width="105"><strong>Users who Scrolled (%)</strong></td>
<td width="136"><strong>Screenfuls (1024&#215;768) Scrolled</strong></td>
</tr>
<tr>
<td width="94">1st Visit</td>
<td width="163">31</td>
<td width="105">23%</td>
<td width="136">0.8</td>
</tr>
<tr>
<td width="94">2nd Visit</td>
<td width="163">25</td>
<td width="105">16%</td>
<td width="136">0.8</td>
</tr>
<tr>
<td width="94">3rd Visit</td>
<td width="163">22</td>
<td width="105">16%</td>
<td width="136">0.8</td>
</tr>
<tr>
<td width="94">4th Visit</td>
<td width="182">19</td>
<td width="139">14%</td>
<td width="199">0.5</td>
</tr>
</tbody>
</table>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/UsabilityCheetSheet_1134F/image_thumb_4.png" border="0" alt="image" width="630" height="314" /></p>
<h2>Homepage vs. Interior Pages</h2>
<table border="1" cellspacing="0" cellpadding="2" width="448">
<tbody>
<tr>
<td width="130"><strong>Web Experience</strong></td>
<td width="151"><strong>Time Spent on Homepage (Seconds)</strong></td>
<td width="165"><strong>Time Spent on Interior Page <strong>(Seconds)</strong> </strong></td>
</tr>
<tr>
<td width="130">Low</td>
<td width="151">35</td>
<td width="165">60</td>
</tr>
<tr>
<td width="130">High</td>
<td width="151">25</td>
<td width="165">45</td>
</tr>
</tbody>
</table>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/UsabilityCheetSheet_1134F/image_thumb_5.png" border="0" alt="image" width="501" height="309" /></p>
<h2>Scrolling by Page Type</h2>
<table border="1" cellspacing="0" cellpadding="2" width="370">
<tbody>
<tr>
<td width="219"></td>
<td width="149"><strong>Users Who Scrolled</strong></td>
</tr>
<tr>
<td width="219">Homepage, 1st Visit</td>
<td width="149">23%</td>
</tr>
<tr>
<td width="219">Homepage, 4th &amp; later visits</td>
<td width="149">14%</td>
</tr>
<tr>
<td width="219">Interior Pages</td>
<td width="149">42%</td>
</tr>
</tbody>
</table>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/UsabilityCheetSheet_1134F/image_thumb_6.png" border="0" alt="image" width="501" height="309" /></p>
<h2>Most Hated Advertising Techniques</h2>
<table border="1" cellspacing="0" cellpadding="2" width="465">
<tbody>
<tr>
<td width="237"><strong>Design Element</strong></td>
<td width="226"><strong>Users who answered &#8220;Negatively&#8221; or Very Negatively&#8221;</strong></td>
</tr>
<tr>
<td width="237">Pops-up in front of your window</td>
<td width="226">95%</td>
</tr>
<tr>
<td width="237">Loads Slowly</td>
<td width="226">94%</td>
</tr>
<tr>
<td width="237">Tries to trick you into clicking it</td>
<td width="226">94%</td>
</tr>
<tr>
<td width="237">Does not have a close button</td>
<td width="226">93%</td>
</tr>
<tr>
<td width="237">Covers what you are trying to see</td>
<td width="226">93%</td>
</tr>
<tr>
<td width="237">Doesn&#8217;t say what it is for</td>
<td width="226">92%</td>
</tr>
<tr>
<td width="237">Moves content around</td>
<td width="226">92%</td>
</tr>
<tr>
<td width="237">Occupies most of the page</td>
<td width="226">90%</td>
</tr>
<tr>
<td width="237">Blinks on and off</td>
<td width="226">87%</td>
</tr>
<tr>
<td width="237">Floats across the screen</td>
<td width="226">79%</td>
</tr>
<tr>
<td width="237">Automatically play sound</td>
<td width="226">79%</td>
</tr>
</tbody>
</table>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/UsabilityCheetSheet_1134F/image_thumb_7.png" border="0" alt="image" width="639" height="390" /></p>
<h2>Browser Statistics (March 2002-2010)</h2>
<table border="1" cellspacing="0" cellpadding="2" width="540">
<tbody>
<tr>
<td width="56"></td>
<td width="85"><strong>IE8</strong></td>
<td width="64"><strong>IE7</strong></td>
<td width="71"><strong>IE6</strong></td>
<td width="74"><strong>Firefox</strong></td>
<td width="79"><strong>Chrome</strong></td>
<td width="53"><strong>Safari</strong></td>
<td width="56"><strong>Opera</strong></td>
</tr>
<tr>
<td width="56">2002</td>
<td width="85">0.00%</td>
<td width="64">0.00%</td>
<td width="71">36.70%</td>
<td width="74">0.00%</td>
<td width="79">0.00%</td>
<td width="53">0.00%</td>
<td width="56">0.00%</td>
</tr>
<tr>
<td width="56">2003</td>
<td width="85">0.00%</td>
<td width="64">0.00%</td>
<td width="71">63.40%</td>
<td width="74">0.00%</td>
<td width="79">0.00%</td>
<td width="53">0.00%</td>
<td width="56">1.20%</td>
</tr>
<tr>
<td width="56">2004</td>
<td width="85">0.00%</td>
<td width="64">0.00%</td>
<td width="71">68.20%</td>
<td width="74">0.00%</td>
<td width="79">0.00%</td>
<td width="53">0.00%</td>
<td width="56">1.40%</td>
</tr>
<tr>
<td width="56">2005</td>
<td width="85">0.00%</td>
<td width="64">0.00%</td>
<td width="71">63.60%</td>
<td width="74">18.90%</td>
<td width="79">0.00%</td>
<td width="53">0.00%</td>
<td width="56">1.90%</td>
</tr>
<tr>
<td width="56">2006</td>
<td width="85">0.00%</td>
<td width="64">0.60%</td>
<td width="71">58.80%</td>
<td width="74">24.50%</td>
<td width="79">0.00%</td>
<td width="53">0.00%</td>
<td width="56">1.50%</td>
</tr>
<tr>
<td width="56">2007</td>
<td width="85">0.00%</td>
<td width="64">18.00%</td>
<td width="71">38.70%</td>
<td width="74">31.80%</td>
<td width="79">0.00%</td>
<td width="53">1.60%</td>
<td width="56">1.60%</td>
</tr>
<tr>
<td width="56">2008</td>
<td width="85">0.00%</td>
<td width="64">24.90%</td>
<td width="71">28.90%</td>
<td width="74">39.10%</td>
<td width="79">0.00%</td>
<td width="53">2.20%</td>
<td width="56">1.40%</td>
</tr>
<tr>
<td width="56">2009</td>
<td width="85">1.40%</td>
<td width="64">24.90%</td>
<td width="71">17.00%</td>
<td width="74">46.50%</td>
<td width="79">4.20%</td>
<td width="53">3.10%</td>
<td width="56">2.30%</td>
</tr>
<tr>
<td width="56">2010</td>
<td width="90">15.30%</td>
<td width="72">10.70%</td>
<td width="86">8.90%</td>
<td width="95">46.20%</td>
<td width="112">12.30%</td>
<td width="77">3.70%</td>
<td width="83">2.20%</td>
</tr>
</tbody>
</table>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/UsabilityCheetSheet_1134F/image_thumb_8.png" border="0" alt="image" width="501" height="338" /></p>
<p>All web developers will be glad to see IE6 on the decrease however  approx 9% of users still use IE6 so if your an online business, it’s  vital to have your website working with IE6.</p>
<h2>JavaScript Statistics (January 2000-2008)</h2>
<table border="1" cellspacing="0" cellpadding="2" width="390">
<tbody>
<tr>
<td width="134"></td>
<td width="129"><strong>JavaScript On</strong></td>
<td width="125"><strong>JavaScript Off</strong></td>
</tr>
<tr>
<td width="134">2000</td>
<td width="129">80%</td>
<td width="125">20%</td>
</tr>
<tr>
<td width="134">2001</td>
<td width="129">81%</td>
<td width="125">19%</td>
</tr>
<tr>
<td width="134">2002</td>
<td width="129">88%</td>
<td width="125">12%</td>
</tr>
<tr>
<td width="134">2003</td>
<td width="129">89%</td>
<td width="125">11%</td>
</tr>
<tr>
<td width="134">2004</td>
<td width="129">92%</td>
<td width="125">8%</td>
</tr>
<tr>
<td width="134">2005</td>
<td width="129">89%</td>
<td width="125">11%</td>
</tr>
<tr>
<td width="134">2006</td>
<td width="129">90%</td>
<td width="125">10%</td>
</tr>
<tr>
<td width="134">2007</td>
<td width="129">94%</td>
<td width="125">6%</td>
</tr>
<tr>
<td width="134">2008</td>
<td width="129">95%</td>
<td width="125">5%</td>
</tr>
</tbody>
</table>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/UsabilityCheetSheet_1134F/image_thumb_9.png" border="0" alt="image" width="485" height="293" /></p>
<h2>Display Resolution (January 2000-2010)</h2>
<table border="1" cellspacing="0" cellpadding="2" width="529">
<tbody>
<tr>
<td width="65"></td>
<td width="101"><strong>Higher</strong></td>
<td width="92"><strong>1024&#215;768</strong></td>
<td width="94"><strong>800&#215;600</strong></td>
<td width="90"><strong>640&#215;480</strong></td>
<td width="85"><strong>Unknown</strong></td>
</tr>
<tr>
<td width="65">2000</td>
<td width="101">4%</td>
<td width="92">25%</td>
<td width="94">56%</td>
<td width="90">11%</td>
<td width="85">4%</td>
</tr>
<tr>
<td width="65">2001</td>
<td width="101">5%</td>
<td width="92">29%</td>
<td width="94">55%</td>
<td width="90">6%</td>
<td width="85">5%</td>
</tr>
<tr>
<td width="65">2002</td>
<td width="101">6%</td>
<td width="92">34%</td>
<td width="94">52%</td>
<td width="90">3%</td>
<td width="85">5%</td>
</tr>
<tr>
<td width="65">2003</td>
<td width="101">6%</td>
<td width="92">40%</td>
<td width="94">47%</td>
<td width="90">2%</td>
<td width="85">5%</td>
</tr>
<tr>
<td width="65">2004</td>
<td width="101">10%</td>
<td width="92">47%</td>
<td width="94">37%</td>
<td width="90">1%</td>
<td width="85">5%</td>
</tr>
<tr>
<td width="65">2005</td>
<td width="101">12%</td>
<td width="92">53%</td>
<td width="94">30%</td>
<td width="90">0%</td>
<td width="85">5%</td>
</tr>
<tr>
<td width="65">2006</td>
<td width="101">17%</td>
<td width="92">57%</td>
<td width="94">20%</td>
<td width="90">0%</td>
<td width="85">6%</td>
</tr>
<tr>
<td width="65">2007</td>
<td width="101">26%</td>
<td width="92">54%</td>
<td width="94">14%</td>
<td width="90">0%</td>
<td width="85">6%</td>
</tr>
<tr>
<td width="65">2008</td>
<td width="101">38%</td>
<td width="92">48%</td>
<td width="94">8%</td>
<td width="90">0%</td>
<td width="85">6%</td>
</tr>
<tr>
<td width="65">2009</td>
<td width="101">57%</td>
<td width="92">36%</td>
<td width="94">4%</td>
<td width="90">0%</td>
<td width="85">3%</td>
</tr>
<tr>
<td width="65">2010</td>
<td width="109">76%</td>
<td width="103">20%</td>
<td width="118">1%</td>
<td width="125">0%</td>
<td width="85">3%</td>
</tr>
</tbody>
</table>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/UsabilityCheetSheet_1134F/image_thumb_10.png" border="0" alt="image" width="501" height="289" /></p>
<h2>Colour Depth</h2>
<table border="1" cellspacing="0" cellpadding="2" width="407">
<tbody>
<tr>
<td width="102"></td>
<td width="122"><strong>16,777,216</strong></td>
<td width="106"><strong>65,536</strong></td>
<td width="75"><strong>256</strong></td>
</tr>
<tr>
<td width="102">2000</td>
<td width="122">34%</td>
<td width="106">54%</td>
<td width="75">12%</td>
</tr>
<tr>
<td width="102">2001</td>
<td width="122">37%</td>
<td width="106">55%</td>
<td width="75">8%</td>
</tr>
<tr>
<td width="102">2002</td>
<td width="122">43%</td>
<td width="106">50%</td>
<td width="75">7%</td>
</tr>
<tr>
<td width="102">2003</td>
<td width="122">51%</td>
<td width="106">44%</td>
<td width="75">5%</td>
</tr>
<tr>
<td width="102">2004</td>
<td width="122">65%</td>
<td width="106">31%</td>
<td width="75">4%</td>
</tr>
<tr>
<td width="102">2005</td>
<td width="122">72%</td>
<td width="106">25%</td>
<td width="75">3%</td>
</tr>
<tr>
<td width="102">2006</td>
<td width="122">81%</td>
<td width="106">16%</td>
<td width="75">3%</td>
</tr>
<tr>
<td width="102">2007</td>
<td width="122">86%</td>
<td width="106">11%</td>
<td width="75">2%</td>
</tr>
<tr>
<td width="102">2008</td>
<td width="122">90%</td>
<td width="106">8%</td>
<td width="75">2%</td>
</tr>
<tr>
<td width="102">2009</td>
<td width="122">95%</td>
<td width="106">4%</td>
<td width="75">1%</td>
</tr>
<tr>
<td width="102">2010</td>
<td width="122">97%</td>
<td width="106">3%</td>
<td width="75">0%</td>
</tr>
</tbody>
</table>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/UsabilityCheetSheet_1134F/image_thumb_11.png" border="0" alt="image" width="501" height="309" /></p>
<p><em>Sources:</em></p>
<ul>
<li><em>Book: <a rel="nofollow" href="http://www.amazon.co.uk/Prioritizing-Web-Usability-Jakob-Nielsen/dp/0321350316" target="_blank">Prioritizing Web Usability</a></em></li>
<li><em>Web: <a rel="nofollow" href="http://www.w3schools.com/" target="_blank">W3Schools</a></em></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigneronline.co.uk/some-interesting-usability-statistics/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Web Design across Cultures &#8211; 9 Advices</title>
		<link>http://www.webdesigneronline.co.uk/web-design-across-cultures-9-advices</link>
		<comments>http://www.webdesigneronline.co.uk/web-design-across-cultures-9-advices#comments</comments>
		<pubDate>Sun, 18 Apr 2010 10:57:15 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[advice]]></category>
		<category><![CDATA[culture]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://www.webdesigneronline.co.uk/?p=527</guid>
		<description><![CDATA[There&#8217;s now over a billion people online around the world, and 78% of that one billion do not speak English as a first language (Internetworldstats.com), so if you&#8217;re launching a website that&#8217;s just going to be in English, it&#8217;s worth taking into account that you&#8217;re only going to be reaching out to 22% of your [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2Fweb-design-across-cultures-9-advices"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2Fweb-design-across-cultures-9-advices" height="61" width="51" /></a></div><p>There&#8217;s now over a billion people online around the world, and 78% of that one billion do not speak English as a first language (<a rel="nofollow" href="http://www.internetworldstats.com/" target="_blank">Internetworldstats.com</a>), so if you&#8217;re launching a website that&#8217;s just going to be in English, it&#8217;s worth taking into account that you&#8217;re only going to be reaching out to 22% of your potential audience.</p>
<p>This is especially relevant if your website is in the business of selling, because research has shown that 85% of consumers won&#8217;t buy a product from a website if they can&#8217;t access information in their own language (<a rel="nofollow" href="http://www.commonsenseadvisory.com/Research/Report_Abstracts/060926_R_global_consumer/tabid/1258/Default.aspx" target="_blank">Common Sense Advisory</a>, 2006). So if you&#8217;re planning to branch out with localised multilingual sites, it&#8217;s worth taking a few factors into account before you get started.</p>
<p>Every cultural group has its own particular cultural quirks, its own particular consumer behaviour and its own aesthetic sensibility, and this has been proven to relay into website design and e-commerce. Psychology professors Denise Park of the University of Illinois and Michael W. Chee of the SingHealth Cognitive Neuroscience Laboratory in Singapore conducted research in 2007 on the ways in which Asian and American subjects processed information. Using cognitive tests and Magnetic Resonance Imaging they proved that the Asian subjects tended to pay more attention to the context, or background, of images, while the American subjects paid more attention the central or dominant feature of the image.</p>
<p>How does this apply to website design, you may ask? Well, it means if you&#8217;re designing a website for an American audience, you&#8217;ll want to get straight to the point, but if you&#8217;re designing a site for the Chinese market, you might want to focus more on your imagery, background and the overall message your site is sending out.</p>
<p>When you&#8217;re looking at building a basic site which can then be translated into a series of localised domains for different markets, it&#8217;s a good idea to consider all of your different markets and what they&#8217;ll each require before starting out. Here are a few tips that might save you a lot of time and hassle down the road.</p>
<h2>Top Level Domains</h2>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/WebDesignacrossCultures_9FEA/image_thumb.png" border="0" alt="image" width="545" height="294" /></p>
<p>First things first, get yourself an in-country Top Level Domain (TLD) for each target market &#8211; not only will it make you look more reputable to the customers, but it will also help with boosting your rankings with the in-country search engines.</p>
<h2>Design</h2>
<p>You need a design that is going to have strong branding and be instantly recognisable to link all of your localised sites together, but also flexible enough to cope with the different aesthetic demands of each different cultural group.</p>
<p>For instance, you might use more imagery and colour in your sites for Asian markets, while your European sites might be more minimalist, with navigation via drop down menus rather than via on-screen gifs.</p>
<p>Keeping your navigation bars horizontal should save you some headaches when it comes to switching between right-to-left and left-to-right languages, and remember that different character sets will mean changing your line widths and heights.</p>
<h2>Colour</h2>
<p><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="ColourTextureSamples_L24" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/WebDesignacrossCultures_9FEA/ColourTextureSamples_L24_thumb.jpg" border="0" alt="ColourTextureSamples_L24" width="545" height="195" /></p>
<p>Colour is a crucial point – it can signify a lot, and can mean very different things in different countries. For instance, in the west, green is generally the colour of nature and the environment, but it&#8217;s also a special colour in Islam.</p>
<p>Don&#8217;t mess up like telecom company Orange did when launching in Northern Ireland and choose a colour inextricably linked with religion and conflict. If you&#8217;re after a safe and happy medium, green or blue backgrounds with black or white text have been shown to be the most universally approved.</p>
<h2>Font</h2>
<p>Keep it simple – Times New Roman, Arial or Verdana are generally considered the least offensive to the eye.</p>
<h2>Imagery</h2>
<p>Remember that your imagery will need to change between localised sites – your Indian customers don&#8217;t care to see a bunch of photos of Russian people enjoying your product, and vice versa; customers need to be able to relate directly to the product.</p>
<p>As always, when designing across cultures, sensitivity is key – if you&#8217;re making a site for a conservative culture, steer away from all indecent imagery. Many cultures will find certain imagery more offensive that others.</p>
<h2>CSS</h2>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/WebDesignacrossCultures_9FEA/image_thumb_3.png" border="0" alt="image" width="570" height="123" /></p>
<p>Cascading Style Sheets (CSS) will save you plenty of hassle by allowing table-less design and by keeping your content separate from your design – absolutely essential if you&#8217;re planning to change the language of your content between each local site.</p>
<p>You don&#8217;t want to have to go redesigning every page from scratch. CSS also allows for smaller file sizes, which is handy for fast page-loading.</p>
<h2>Unicode</h2>
<p>If you&#8217;re switching your text between half a dozen languages, you&#8217;re going to need a flexible character encoding tool. Luckily Unicode UTF-8 provides exactly that, with a unique code for every character in over 90 languages, so whether you&#8217;re called upon to switch text into simplified Chinese characters or to add in a few German &#8216;Eszett&#8217; symbols (ß), you&#8217;ll be covered.</p>
<h2>Flash</h2>
<p><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/WebDesignacrossCultures_9FEA/image_thumb_4.png" border="0" alt="image" width="260" height="253" /></p>
<p>Try and avoid Flash (and Java) wherever possible – not only will Flash files slow down your page load times (which is no good for countries without high speed internet, not to mention that it&#8217;s now believed that Google has made page-load times a factor in its rankings algorithm), but text embedded in Flash files is also invisible to search engine bots, meaning it&#8217;s useless for your SEO strategy.</p>
<h2>Translate</h2>
<p><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="Characters_L24" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/WebDesignacrossCultures_9FEA/Characters_L24_thumb.jpg" border="0" alt="Characters_L24" width="290" height="332" /></p>
<p>Perhaps most important of all – make sure that your content is correct. Web users are a savvy lot, especially when it comes to buying online, and if your copy contains spelling mistakes, or uses odd phrasing, or just feels &#8216;off&#8217;, then it&#8217;s unlikely you&#8217;re going to convince the customer that you&#8217;re a reliable retailer.</p>
<p>As tempting as it might be to save money by sticking a <a rel="nofollow" href="http://translate.google.com/" target="_blank">Google Translate</a> widget on each page, automatic translation devices have no feel for the subtleties or the rhythm of a language – to do it properly you need to get a professional translator working into their language to translate your copy and make sure that it&#8217;s culturally appropriate for the target market.</p>
<p>This is especially true for your SEO keywords – the direct English translation is not always the most popular search term – a quick spot of research on a keyword search tool such as <a rel="nofollow" href="https://adwords.google.co.uk/select/KeywordToolExternal" target="_blank">Google Adwords</a> will help you to figure out which keywords to use prominently in your copy.</p>
<div class="guest">
<h3>About the Author:</h3>
<p><a><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="lingo24_logo" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/WebDesignacrossCultures_9FEA/lingo24_logo_thumb.jpg" border="0" alt="lingo24_logo" width="258" height="91" /></a></p>
<p>Christian Arno is the founder and managing director of global translation provider Lingo24, which also specialises in <a href="http://www.lingo24.com/multilingual_website_design.html" target="_blank">website localisation</a>.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigneronline.co.uk/web-design-across-cultures-9-advices/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Free Social Media Icon Set for 2010</title>
		<link>http://www.webdesigneronline.co.uk/free-social-media-icon-set</link>
		<comments>http://www.webdesigneronline.co.uk/free-social-media-icon-set#comments</comments>
		<pubDate>Sun, 10 Jan 2010 17:23:00 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Freebies]]></category>

		<guid isPermaLink="false">http://www.webdesigneronline.co.uk/?p=507</guid>
		<description><![CDATA[I thought it’s about time I publish a freebie on this site.
All the 10 social media Icons were design in Illustrator CS3 and are all completely vector based. (i.e. you can resize them to any size without loosing quality!)
I have Also attached the Illustrator Source files.
So, for our Free Social Media Icon Set, you get:

10 [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2Ffree-social-media-icon-set"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2Ffree-social-media-icon-set" height="61" width="51" /></a></div><p>I thought it’s about time I publish a freebie on this site.</p>
<p>All the 10 social media Icons were design in Illustrator CS3 and are all completely vector based. (i.e. you can resize them to any size without loosing quality!)</p>
<p>I have Also attached the Illustrator Source files.</p>
<p>So, for our Free Social Media Icon Set, you get:</p>
<ul>
<li>10 Icons     <br />(Yahoo, Twitter, Stumble Upon, RSS, LinkedIn, Google, Flickr, Facebook, Digg and Delicious.) </li>
<li>Illustrator <strong style="font-weight: bold">CS3</strong> Source File </li>
<li>PDF Vector </li>
<li>PNG 64&#215;64 </li>
</ul>
<h2 style="font-size: 1.5em">Disclaimer</h2>
<p>You are free to use these icons for both personal and commercial use without linking back to us (however I would appreciate if you did!).</p>
<p><strong style="font-weight: bold">Please Note: You are not allowed to publish these icons on any site for others to download or link directly to them.</strong></p>
<p><strong style="font-weight: bold">You may direct users to this page.</strong></p>
<h2 style="font-size: 1.5em">Free Social Media Icon Set </h2>
<p><a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/1_3.jpg"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="1" border="0" alt="1" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/1_thumb_3.jpg" width="420" height="201" /></a></p>
<h2 style="font-size: 1.5em">Download</h2>
<div class="download-xml"><strong style="font-weight: bold"><a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/free-social-media-icon-set-by-webdesigneronline.co.uk.zip">Full Set (.zip file)</a></strong>    </div>
<p><em style="font-style: italic">Contains 64&#215;64 PNG’s, PDF’s, Illustrator <strong style="font-weight: bold">CS3</strong> Source Files</em></p>
<p><strong style="font-weight: bold">Individuals</strong></p>
<p><strong style="font-weight: bold">Yahoo:</strong> <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Yahoo.png">PNG (64&#215;64)</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Yahoo.pdf">Vector PDF</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Yahoo.ai">Illustrator</a></p>
<p><strong style="font-weight: bold">Twitter:</strong> <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Twitter.png">PNG (64&#215;64)</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Twitter.pdf">Vector PDF</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Twitter.ai">Illustrator</a></p>
<p><strong style="font-weight: bold">Stumble Upon:</strong> <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Stumble-Upon.png">PNG (64&#215;64)</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Stumble-Upon.pdf">Vector PDF</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Stumble-Upon.ai">Illustrator</a></p>
<p><strong style="font-weight: bold">RSS:</strong> <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/RSS.png">PNG (64&#215;64)</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/RSS.pdf">Vector PDF</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/RSS.ai">Illustrator</a></p>
<p><strong style="font-weight: bold">LinkedIn:</strong> <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/LinkedIn.png">PNG (64&#215;64)</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/LinkedIn.pdf">Vector PDF</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/LinkedIn.ai">Illustrator</a></p>
<p><strong style="font-weight: bold">Google:</strong> <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Google.png">PNG (64&#215;64)</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Google.pdf">Vector PDF</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Google.ai">Illustrator</a></p>
<p><strong style="font-weight: bold">Flickr:</strong> <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Flickr.png">PNG (64&#215;64)</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Flickr.pdf">Vector PDF</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Flickr.ai">Illustrator</a></p>
<p><strong style="font-weight: bold">Facebook:</strong> <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Facebook.png">PNG (64&#215;64)</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Facebook.pdf">Vector PDF</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Facebook.ai">Illustrator</a></p>
<p><strong style="font-weight: bold">Digg:</strong> <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Digg.png">PNG (64&#215;64)</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Digg.pdf">Vector PDF</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Digg.ai">Illustrator</a></p>
<p><strong style="font-weight: bold">Delicious:</strong> <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Delicious.png">PNG (64&#215;64)</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Delicious.pdf">Vector PDF</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/FreeSocialMediaIconSet_FB3A/Delicious.ai">Illustrator</a></p>
<h2 style="font-size: 1.5em">Credits</h2>
<p>The Bamboo leaf’s you see in the background were designed from <a href="http://www.ndesign-studio.com/tutorials/chinese-bamboo" rel="nofollow" target="_blank">this tutorial</a> at N Design studio.</p>
<h2 style="font-size: 1.5em">Tutorial?</h2>
<p>If you would like to see a tutorial on how to design these icons in Illustrator, let me know and I&#8217;ll write one!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigneronline.co.uk/free-social-media-icon-set/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>11 Lesser known SEO Ranking Factors. Analysis of Just Search.</title>
		<link>http://www.webdesigneronline.co.uk/11-lesser-known-seo-ranking-factors-analysis-of-just-search</link>
		<comments>http://www.webdesigneronline.co.uk/11-lesser-known-seo-ranking-factors-analysis-of-just-search#comments</comments>
		<pubDate>Fri, 27 Nov 2009 13:57:15 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.webdesigneronline.co.uk/?p=496</guid>
		<description><![CDATA[Over the course of this year, I have worked with hundreds of websites and have seen some great first page Google rankings for them. However there are those few sites which didn’t rank too well until some minor changes were implement. Such small changes that most people would consider them to be worthless. In my [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2F11-lesser-known-seo-ranking-factors-analysis-of-just-search"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2F11-lesser-known-seo-ranking-factors-analysis-of-just-search" height="61" width="51" /></a></div><p>Over the course of this year, I have worked with hundreds of websites and have seen some great first page Google rankings for them. However there are those few sites which didn’t rank too well until some minor changes were implement. Such small changes that most people would consider them to be worthless. In my opinion, priceless.</p>
<p><strong>Note:</strong> This Article isn’t for the beginner in SEO. If you’re new to SEO, then head over to Web Designer Wall and read their <a rel="nofollow" href="http://www.webdesignerwall.com/general/seo-guide-for-designers/" target="_blank">SEO Guide for Designers</a>.</p>
<p>Throughout this post, I’m going to use Just Search (<a rel="nofollow" href="http://www.justsearching.co.uk">http://www.justsearching.co.uk</a>) as an example.</p>
<p><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/LessknowsSEOFactorswithanalysisofJustSea_13556/image_thumb.png" border="0" alt="image" width="260" height="68" /></p>
<p>Many of you will wonder why I choose the company Just Search. Well, these guys must know the Google Search Engine quite well; Just Search is the highest ranking company in Google UK for the term <a rel="nofollow" href="http://www.google.co.uk/#hl=en&amp;q=seo&amp;meta=cr%3DcountryUK|countryGB&amp;aq=f&amp;oq=&amp;fp=7fe5513f2cee5d19" target="_blank">SEO</a>:</p>
<p><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/LessknowsSEOFactorswithanalysisofJustSea_13556/image_thumb_3.png" border="0" alt="image" width="572" height="210" /></p>
<p><strong>Brief History of Just Search</strong></p>
<p>Just Search was founded in 2003 and has developed into the leading Search Engine Marketing Company in the United Kingdom. They gained themselves first page listings for many SEO related keywords and have also gained first page results for their clients.</p>
<p><a href="http://www.getupdated.co.uk/News/Getupdated-Internet-Marketing-acquires-Just-Search/" target="_blank">Just Search</a> was recently acquired by <a rel="nofollow" href="http://www.getupdated.se/" target="_blank">Get Updated</a> – A Swedish Internet Marketing company who operate in Sweden, UK, US, France and Germany.</p>
<p>Their clients include the likes of <a rel="nofollow" href="http://www.sportsdirect.com/" target="_blank">Sports Direct</a>.</p>
<h2>Lesser known SEO Ranking Factors</h2>
<h3 class="sub">1. Order of Keywords in the &lt;title&gt; tag</h3>
<p>It has been noted from the SEO world that the positioning of the keywords in the &lt;title&gt; tag is important and sometimes is the missing factor to rank on page 1 of Google.</p>
<p>Other points to note involving the &lt;title&gt; tag:</p>
<ul>
<li>Try to keep this unique throughout the site</li>
<li>Shouldn’t be too short or too long</li>
<li>Some SEO experts consider the &lt;title&gt; tag to be one of the major factors Search engines look at to rank a site</li>
<li>Google SERPs display about 65 characters from the title tag</li>
<li>Place your most important Keyword at the beginning</li>
</ul>
<p><em><strong>Examples -</strong> Just Search:</em></p>
<ul>
<li><a title="http://www.justsearching.co.uk/" rel="nofollow" href="http://www.justsearching.co.uk/" target="_blank">http://www.justsearching.co.uk/</a><em><br />
</em>Just Search » Search Engine Optimisation (SEO) » Internet Marketing (10 words/58 chars)</li>
<li><a title="http://www.justsearching.co.uk/web_analytics.html" rel="nofollow" href="http://www.justsearching.co.uk/web_analytics.html" target="_blank">http://www.justsearching.co.uk/web_analytics.html</a>:<br />
Just Search » Intelligent Web Analytics » Internet Marketing Solutions (10 words/61 chars)</li>
<li><a title="http://www.justsearching.co.uk/pay_per_click.html" rel="nofollow" href="http://www.justsearching.co.uk/pay_per_click.html" target="_blank">http://www.justsearching.co.uk/pay_per_click.html</a><br />
Just Search » Pay-Per-Click Advertising » Internet Marketing Solutions (9 words/62 chars)</li>
<li><a title="http://www.justsearching.co.uk/seo-agencies.html" rel="nofollow" href="http://www.justsearching.co.uk/seo-agencies.htmlTitle" target="_blank">http://www.justsearching.co.uk/seo-agencies.html</a><strong><br />
</strong>Just Search » Become a Just Search reseller » Internet Marketing Solutions (12 words/63 chars)</li>
</ul>
<p>About 62 character and 10 words seems to be very good for the &lt;title&gt;. (A maximum of 90 characters is recommended).</p>
<h3 class="sub">2. Placement of the &lt;h1&gt; tag in a page</h3>
<p>The &lt;h1&gt; tag should relatively be placed somewhere high in the HTML code and physically prominent on a page.</p>
<p><em><strong>Example -</strong> Just Search:</em></p>
<p><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/LessknowsSEOFactorswithanalysisofJustSea_13556/image_thumb_6.png" border="0" alt="image" width="572" height="338" /></p>
<p>Now this is a nifty trick! The &lt;h1&gt; seems to appear below the &lt;h2&gt;’s however if you look at the source code of the page or display the page with CSS switched off, you’ll see the &lt;h1&gt; in actual fact appears before the &lt;h2&gt;’s. (Uses a large CSS margin).</p>
<h3 class="sub">3. Number of IP address changes</h3>
<p>Search engines take note of the IP address of the site, the number of times it changes and how often it changes. If the IP address of a site changes frequently, then this will lead to a loss of trust in your site and potentially a loss of rankings.</p>
<p>By submitting and verifying your site in <a rel="nofollow" href="http://siteexplorer.search.yahoo.com/" target="_blank">Yahoo Site Explorer</a>, you can get to know the IP history of a domain.</p>
<h3 class="sub">4. Google can read basic JavaScript Links</h3>
<p>Using basic JavaScript to display links so Page Rank will be preserved for other pages doesn’t work anymore. Google can read and follow basic JavaScript links.</p>
<p>One option is to use some complex JavaScript to encrypt links from the Search Engines.</p>
<h3 class="sub">5. How often a page changes affects SEO</h3>
<p>Changing the contents of a page in large chunks frequently can lead to search engines loosing trust in your site. <strong>This only applies to content that generally stays untouched </strong>(such as an Ab<em>out</em> page or <em>Welcome</em> text).</p>
<p><em><strong>Example -</strong> Just Search:</em></p>
<p>All the content on the Just Search homepage is static and seems to remain untouched with the exception of the two blog feeds above the footer.</p>
<h3 class="sub">6. Page Download Speed / Content to Code Ratio</h3>
<p>A theory amongst top SEO’s is that the page download speed is going to become (or already is!) a ranking factor for sites. One proof of this is the fact the Google and Yahoo have both released a Firefox addon to measure the page download speed:</p>
<p><a rel="nofollow" href="http://code.google.com/speed/page-speed/" target="_blank">Google Page Speed</a><br />
<a rel="nofollow" href="https://addons.mozilla.org/en-US/firefox/addon/5369" target="_blank">Yahoo! YSlow</a> for Firebug</p>
<p>I personally haven’t used both in much detail but I am aware Google’s Page Speed optimises the images and CSS for you automatically!</p>
<ul>
<li>Stick to minimum code</li>
<li>Keep CSS and JavaScript files external</li>
<li>Avoid using HTML &lt;table&gt; tags unless you <em>have to</em></li>
</ul>
<p>Just Search have a good tool to measure the <a rel="nofollow" href="http://www.justsearching.co.uk/tools/code-to-content/code-to-content.php" target="_blank">code to content ratio</a> of any page.</p>
<p><em><strong>Example -</strong> Just Search:</em></p>
<p>Running the Just Search homepage through their code to content tool:</p>
<p><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/LessknowsSEOFactorswithanalysisofJustSea_13556/image_thumb_5.png" border="0" alt="image" width="572" height="314" /></p>
<p>Seems like Just Search are doing fairly good here!</p>
<h3 class="sub">7. Social Media</h3>
<p>Social media is really kicking off like it has never been and there is so much information that can be gather using social media. Due to this, many SEO’s think social media will become a major ranking factor in the near future.</p>
<p>It has recently been noted in the SEO world that if a fresh story/page on a website gets very popular, Google will rank it high for a short period.</p>
<p>(There was a recent story on the Guardian website regarding BBC &amp; SEO that gained a lo of popularity in a short time span and so was ranking at position 11 in Google for the search phrase “SEO” for a short period!!)</p>
<p><em><strong>Example -</strong> Just Search:</em></p>
<p>Just search have some nifty looking web 2.0 Twitter, Facebook and LinkedIn icons:</p>
<p><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/LessknowsSEOFactorswithanalysisofJustSea_13556/image_thumb_7.png" border="0" alt="image" width="242" height="74" /></p>
<p>And on their blog, a <a rel="nofollow" href="http://sphinn.com/" target="_blank">Sphinn</a> and <a rel="nofollow" href="http://tweetmeme.com" target="_blank">TweetMeme</a> button:</p>
<p><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/LessknowsSEOFactorswithanalysisofJustSea_13556/image_thumb_8.png" border="0" alt="image" width="572" height="93" /></p>
<h3 class="sub">8. Contextual Backlinks have more value than standalone ones</h3>
<p>A link to your site that appears within a related paragraph is better than a link on it’s own.</p>
<p><em><strong>Example -</strong> Just Search:</em></p>
<p>Well, the link in this post to Just Search is a good contextual link!!</p>
<h3 class="sub">9. First Anchor text only</h3>
<p>If there are two links pointing to the same page on your website, then Google will only value the first Anchor text. If you nofollow the first, then Google will use the second.</p>
<p><em><strong>Example -</strong> Just Search:</em></p>
<p>The first and second link to <a title="http://www.justsearching.co.uk/seo.html" rel="nofollow" href="http://www.justsearching.co.uk/seo.html">http://www.justsearching.co.uk/seo.html</a> is:</p>
<p><a rel="nofollow" href="http://www.justsearching.co.uk/seo.html">Learn more about SEO</a></p>
<p><a rel="nofollow" href="http://www.justsearching.co.uk/seo.html">More on Search Engine Optimisation</a></p>
<p>Google will place more relevance on the first and thus the Keyword <em>SEO</em></p>
<h3 class="sub">10. Geo-location of the host</h3>
<p>A site hosted in the UK trying to rank high in Google France would be better hosted in the UK.</p>
<p>Four situations can arise:</p>
<p><em>We assume you want to rank for Google UK</em></p>
<ol>
<li>TLD of a URL is the same as the country where a site is hosted<br />
<em>a <strong>.uk </strong>domain hosted in the <strong>UK</strong></em></li>
<li>TLD is <strong>right</strong> but the Geo-location of host is <strong>different</strong><br />
<em>a <strong>.uk</strong> domain hosted in <strong>Germany</strong></em></li>
<li>TLD is <strong>different</strong> and the Geo-location of host is <strong>right</strong><br />
<em>a .de domain hosted in UK</em></li>
<li>Both TLD and Geo-location of host is <strong>different<br />
</strong><em>a .cn domain hosted in China</em></li>
</ol>
<p>Google places more importance on the TLD than the host.</p>
<p>If you are looking to rank in the UK then a .uk domain is highly recommended. If the TLD is right, the host is not too important but still recommended.</p>
<p>If you don’t have the TLD but the host is right then you should ideally get a new domain otherwise register on Google Webmaster Tools and set the Geo-location of your site to the country you wish to rank for.</p>
<p>For situation 4, the best solution is to purchase a new domain and move host’s to the UK.</p>
<p><em><strong>Example -</strong> Just Search:</em></p>
<p><a rel="nofollow" href="https://addons.mozilla.org/en-US/firefox/addon/5791" target="_blank">Flagfox</a> is a Firefox plugin that shows the country where the host is located.</p>
<p>We can see Just Search have a .uk domain hosted in the UK:</p>
<p><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/LessknowsSEOFactorswithanalysisofJustSea_13556/image_thumb_9.png" border="0" alt="image" width="421" height="36" /></p>
<h3 class="sub">11. Position of text/links on a site</h3>
<p>Keywords that appear in the sidebar and footer have less value than those appearing in the main body and centre of the site. So if you want to rank for a particular keyword, be sure it appears high in the centre and primary sections of your page!</p>
<p><em><strong>Example -</strong> Just Search:</em></p>
<p>Just Search have some very good content at the outset of the site:</p>
<p><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/LessknowsSEOFactorswithanalysisofJustSea_13556/image_thumb_10.png" border="0" alt="image" width="572" height="254" /></p>
<h2>Conclusion</h2>
<p>The best time to begin SEO is before even a site has been designed.</p>
<p>We can see from the Just Search website, the <strong>design</strong> of a site is important in terms of SEO.:</p>
<ul>
<li>Where is the content going to be placed?</li>
<li>Social Media icons?</li>
<li>&lt;h1&gt;/&lt;h2&gt; tags?</li>
<li>Location Blog Feed?</li>
</ul>
<p>These are just some of the questions to ask when it comes to designing a new site.</p>
<p>Then comes the <strong>development</strong> of the new site:</p>
<ul>
<li>Are you going to use a CMS? Ensure it fulfilled all your SEO requirements</li>
<li>Content to Code ratio</li>
<li>SEO friendly URLs</li>
<li>Make sure the test site doesn’t get indexed!<br />
<em>(Disallow: /)</em></li>
<li>No hidden text in any form (such as black text on black background!)</li>
<li>Avoid keyword stuffed alt tags</li>
</ul>
<p>Then the ongoing, continuous, <strong>SEO:</strong></p>
<ul>
<li>Unique &lt;title&gt;’s and Meta Descriptions throughout site?</li>
<li>one &lt;h1&gt; on every page?</li>
<li>Duplicate content?</li>
<li>Quality Backlinks?</li>
<li>Updated XML Sitemaps?</li>
</ul>
<p>The 11 items mentioned above are not known to many and take time to master but once perfected, results will be great!</p>
<h2>Bonus</h2>
<p>Here’s an RSS icon I designed in Illustrator just for fun:</p>
<p><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/LessknowsSEOFactorswithanalysisofJustSea_13556/image_thumb_11.png" border="0" alt="image" width="183" height="217" /></p>
<p>Download: <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/LessknowsSEOFactorswithanalysisofJustSea_13556/RSS.ai">Illustrator</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/LessknowsSEOFactorswithanalysisofJustSea_13556/RSS.pdf" target="_blank">PDF (vector)</a> | <a href="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/LessknowsSEOFactorswithanalysisofJustSea_13556/RSS.jpg" target="_blank">JPG</a></p>
<p>Use it however you like. <em>Although do let me know what you think of it and if you would like more!!!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigneronline.co.uk/11-lesser-known-seo-ranking-factors-analysis-of-just-search/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Web Designer Online Update</title>
		<link>http://www.webdesigneronline.co.uk/web-designer-online-update</link>
		<comments>http://www.webdesigneronline.co.uk/web-designer-online-update#comments</comments>
		<pubDate>Sun, 15 Nov 2009 23:56:23 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://www.webdesigneronline.co.uk/?p=486</guid>
		<description><![CDATA[HI Guys! I thought it’s about time I give you an update on how Web Designer Online (WDO) is progressing.
WDO was launched on the 9th of July and so it’s been around a little over 4 months.
General Progress
The site is doing great and much better than I expected!! I’ve had to upgrade my hosting package [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2Fweb-designer-online-update"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2Fweb-designer-online-update" height="61" width="51" /></a></div><p>HI Guys! I thought it’s about time I give you an update on how Web Designer Online (WDO) is progressing.</p>
<p>WDO was launched on the 9th of July and so it’s been around a little over 4 months.</p>
<h2>General Progress</h2>
<p>The site is doing great and much better than I expected!! I’ve had to upgrade my hosting package to cater for the increasing traffic.</p>
<p>Thanks to you guys, of course!</p>
<h2>Popular Posts</h2>
<p>Many of my posts have proved to be very successful in the web design world. Here’s a few of them:</p>
<p><a href="http://www.webdesigneronline.co.uk/10-advance-jquery-scripts-to-take-your-website-to-the-next-level"><strong>10 Advance jQuery Scripts to take Your Website to the Next Level</strong> </a></p>
<p>This has been my most popular and was very well received. Current stats:</p>
<ul>
<li>Gained first Page on Delicious</li>
<li>435 Delicious Bookmarks</li>
<li>Page Rank – 4 (<a href="http://www.webdesigneronline.co.uk/contact" target="_blank">Contact me</a> if you’re interested…)</li>
<li>First page on Google for “jquery scripts” and many other Keywords</li>
<li>I think it even got first page on DesignMoo</li>
</ul>
<p><a href="http://www.webdesigneronline.co.uk/subscribe-to-75-awesome-design-blogs-in-2-minutes-with-this-file-via-your-rss-reader"><strong>Subscribe to 75+ Awesome Design Blogs in 2 minutes with this file via your RSS Reader</strong> </a></p>
<p>This was another popular post which attracted the top members in the design community and was tweeted by the likes of @<a rel="nofollow" href="http://twitter.com/creattica" target="_blank">creattica</a> @<a rel="nofollow" href="http://twitter.com/FreelanceSw" target="_blank">FreelanceSw</a> @<a rel="nofollow" href="http://twitter.com/ilovetypography" target="_blank">ilovetypography</a> @<a rel="nofollow" href="http://twitter.com/FreelanceFolder" target="_blank">FreelanceFolder</a> etc.</p>
<h2>Subscribers</h2>
<p>We’re almost at about a thousand subscribers!</p>
<p><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/WebDesignerOnlineUpdate_98B6/image_thumb.png" border="0" alt="image" width="506" height="166" /></p>
<h2>Looking for Writers</h2>
<p>I would like to offer all of my readers quality articles very often and I cannot do this without your help.</p>
<p>If anyone is interested in writing for Web Designer Online, please <a href="http://www.webdesigneronline.co.uk/contact" target="_blank">get in touch</a> and we’ll figure something out.</p>
<h2>What’s Next?</h2>
<p>I have some big plans for Web Designer Online. Many new features will materialise soon.</p>
<ul>
<li>In terms of posts, I’ve got some great ones lined up!</li>
<li>Great Competitions</li>
<li>More user interaction and functionality</li>
<li>Maybe a forum and member profile pages?</li>
<li>Further Social Media enhancements!</li>
</ul>
<p>If you have any suggestions for improvements, be sure to <a href="http://www.webdesigneronline.co.uk/contact">let me know</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigneronline.co.uk/web-designer-online-update/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>16 Awesome WordPress Admin Themes and Plugins</title>
		<link>http://www.webdesigneronline.co.uk/16-awesome-wordpress-admin-themes-and-plugins</link>
		<comments>http://www.webdesigneronline.co.uk/16-awesome-wordpress-admin-themes-and-plugins#comments</comments>
		<pubDate>Sun, 25 Oct 2009 22:41:18 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Showcase]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.webdesigneronline.co.uk/?p=477</guid>
		<description><![CDATA[Daily, we see blog posts written on WordPress Themes that 327 people have featured, 974 people have linked to 34,883 times. I’m sure you get the idea!
Well, it may seem we’re doing the same!!?! No, we’re not. Here, we are featuring 16 themes and plugins that can be applied to your WordPress admin interface to [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2F16-awesome-wordpress-admin-themes-and-plugins"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2F16-awesome-wordpress-admin-themes-and-plugins" height="61" width="51" /></a></div><p>Daily, we see blog posts written on WordPress Themes that 327 people have featured, 974 people have linked to 34,883 times. I’m sure you get the idea!</p>
<p>Well, it may seem we’re doing the same!!?! No, we’re not. Here, we are featuring 16 themes and plugins that can be applied to your <strong>WordPress admin </strong>interface to improve functionality and usability! We all know the standard look and features of the WordPress admin interface and it can be good to spice it up a little. With the following, you can do just that!</p>
<h2>16 Awesome WordPress Admin Themes and Plugins</h2>
<p><strong><a class="external-site-link" rel="nofollow" href="http://deanjrobinson.com/projects/fluency-admin/" target="_blank">Fluency Admin 2.1</a></strong></p>
<p>For WordPress 2.8.x</p>
<p><a rel="nofollow" href="http://orderedlist.com/wordpress-plugins/wp-tiger-administration/" target="_blank"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/10AwesomeWordpressAdminThemes_F71E/image3.png" border="0" alt="image" width="570" height="410" /></a></p>
<p><strong><a class="external-site-link" rel="nofollow" href="http://orderedlist.com/wordpress-plugins/wp-tiger-administration/" target="_blank">WP Tiger Administration</a></strong></p>
<p>For WordPress 2.0.x</p>
<p><a rel="nofollow" href="http://orderedlist.com/wordpress-plugins/wp-tiger-administration/" target="_blank"><img style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/10AwesomeWordpressAdminThemes_F71E/image_4.png" border="0" alt="image" width="570" height="334" /></a></p>
<p><strong><a class="external-site-link" rel="nofollow" href="http://jsbox.net/283/" target="_blank">JS Style</a></strong></p>
<p>For WordPress 1.5.3 – 2.0.3</p>
<p><a rel="nofollow" href="http://jsbox.net/283/" target="_blank"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/10AwesomeWordpressAdminThemes_F71E/image28.png" border="0" alt="image" width="570" height="308" /></a></p>
<p><strong><a class="external-site-link" rel="nofollow" href="http://wordpress.org/extend/plugins/leopard-admin/" target="_blank">Leopard Admin</a></strong></p>
<p><strong>Compatible up to:</strong> 2.5</p>
<p><a rel="nofollow" href="http://wordpress.org/extend/plugins/leopard-admin/" target="_blank"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/10AwesomeWordpressAdminThemes_F71E/image.png" border="0" alt="image" width="570" height="410" /></a></p>
<p><strong><a class="external-site-link" rel="nofollow" href="http://wordpress.org/extend/plugins/wphone/" target="_blank">WPhone</a></strong></p>
<p><strong>Requires WordPress Version:</strong> 2.1 or higher</p>
<p><a rel="nofollow" href="http://wordpress.org/extend/plugins/wphone/" target="_blank"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/10AwesomeWordpressAdminThemes_F71E/image43.png" border="0" alt="image" width="340" height="500" /></a></p>
<p><strong><a class="external-site-link" rel="nofollow" href="http://wordpress.org/extend/plugins/mobileadmin/" target="_blank">Phone / Mobile Admin</a></strong></p>
<ul>
<li><strong>Requires WordPress Version:</strong> 2.2.2 or higher</li>
<li><strong>Compatible up to:</strong> 2.3</li>
</ul>
<p><a rel="nofollow" href="http://wordpress.org/extend/plugins/mobileadmin/" target="_blank"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/10AwesomeWordpressAdminThemes_F71E/image481.png" border="0" alt="image" width="340" height="500" /></a></p>
<p><strong><a class="external-site-link" rel="nofollow" href="http://wordpress.org/extend/plugins/baltic-amber-admin-themes-and-schemes/" target="_blank">Baltic Amber</a></strong></p>
<p>Ability to change colour scheme (even randomising it!).</p>
<ul>
<li><strong>Requires WordPress Version:</strong> 2.5 or higher</li>
<li><strong>Compatible up to:</strong> 2.6</li>
</ul>
<p><a rel="nofollow" href="http://wordpress.org/extend/plugins/baltic-amber-admin-themes-and-schemes/" target="_blank"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/10AwesomeWordpressAdminThemes_F71E/image_3.png" border="0" alt="image" width="570" height="426" /></a></p>
<p><strong><a class="external-site-link" rel="nofollow" href="http://www.sevban.com/wordpress/planet-x7-wordpress-admin-theme/" target="_blank">Planet X7</a></strong></p>
<ul>
<li><strong>Requires WordPress Version:</strong> 2.1</li>
<li><strong>Compatible up to:</strong> 2.3</li>
</ul>
<p><a rel="nofollow" href="http://www.sevban.com/wordpress/planet-x7-wordpress-admin-theme/" target="_blank"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/10AwesomeWordpressAdminThemes_F71E/image5.png" border="0" alt="image" width="570" height="628" /></a></p>
<p><strong><a class="external-site-link" rel="nofollow" href="http://wordpress.org/extend/plugins/ozh-admin-drop-down-menu/screenshots/" target="_blank">Ozh’ Admin Drop Down Menu</a></strong></p>
<p><strong>Requires WordPress Version:</strong> 2.8 or higher</p>
<p><a rel="nofollow" href="http://wordpress.org/extend/plugins/ozh-admin-drop-down-menu/screenshots/" target="_blank"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/10AwesomeWordpressAdminThemes_F71E/image26.png" border="0" alt="image" width="400" height="273" /></a></p>
<p><strong><a class="external-site-link" rel="nofollow" href="http://wordpress.org/extend/plugins/lighter-admin-drop-menus/" target="_blank">Lighter Menus</a></strong></p>
<ul>
<li><strong>Requires WordPress Version:</strong> 2.5 or higher</li>
<li><strong>Compatible up to:</strong> 2.6.5</li>
</ul>
<p><a rel="nofollow" href="http://wordpress.org/extend/plugins/lighter-admin-drop-menus/" target="_blank"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/10AwesomeWordpressAdminThemes_F71E/image331.png" border="0" alt="image" width="570" height="303" /></a></p>
<p><strong><a class="external-site-link" rel="nofollow" href="http://wordpress.org/extend/plugins/retro-dashboard/" target="_blank">Retro Dashboard</a></strong></p>
<ul>
<li><strong>Requires WordPress Version:</strong> 2.5 or higher</li>
<li><strong>Compatible up to:</strong> 2.5.1</li>
</ul>
<p><a rel="nofollow" href="http://wordpress.org/extend/plugins/retro-dashboard/" target="_blank"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/10AwesomeWordpressAdminThemes_F71E/image38.png" border="0" alt="image" width="570" height="416" /></a></p>
<p><strong><a class="external-site-link" rel="nofollow" href="http://wordpress.org/extend/plugins/simple-tags/" target="_blank">Simple Tags</a></strong></p>
<ul>
<li><strong>Requires WordPress Version:</strong> 2.3 or higher</li>
<li><strong>Compatible up to:</strong> 2.8</li>
</ul>
<p><a rel="nofollow" href="http://wordpress.org/extend/plugins/simple-tags/" target="_blank"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/10AwesomeWordpressAdminThemes_F71E/image44.png" border="0" alt="image" width="570" height="261" /></a></p>
<p><strong><a class="external-site-link" rel="nofollow" href="http://wordpress.org/extend/plugins/wordpress-admin-bar/" target="_blank">WordPress Admin Bar</a></strong></p>
<ul>
<li><strong>Requires WordPress Version:</strong> 2.7 or higher</li>
<li><strong>Compatible up to:</strong> 2.8</li>
</ul>
<p><a rel="nofollow" href="http://wordpress.org/extend/plugins/wordpress-admin-bar/" target="_blank"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/10AwesomeWordpressAdminThemes_F71E/image51.png" border="0" alt="image" width="570" height="104" /></a></p>
<p><strong><a class="external-site-link" rel="nofollow" href="http://www.schloebe.de/wordpress/admin-management-xtended-plugin/" target="_blank">Admin Management xtended</a></strong> (Scroll down for English version)</p>
<p>The plugin requires Wordpress 2.5+, supports 2.6 and 2.7 (from plugin version 2.0).</p>
<p>Allows you to edit certain post/page properties without going into them.</p>
<p><a rel="nofollow" href="http://www.schloebe.de/wordpress/admin-management-xtended-plugin/" target="_blank"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/10AwesomeWordpressAdminThemes_F71E/image57.png" border="0" alt="image" width="429" height="291" /></a></p>
<p><strong><a class="external-site-link" rel="nofollow" href="http://wordpress.org/extend/plugins/pop-menus-for-wp-admin/" target="_blank">Pop Menus for WP-Admin</a></strong></p>
<ul>
<li><strong>Requires WordPress Version:</strong> 2.7 or higher</li>
<li><strong>Compatible up to:</strong> 2.8.3</li>
</ul>
<p><a rel="nofollow" href="http://wordpress.org/extend/plugins/pop-menus-for-wp-admin/" target="_blank"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/10AwesomeWordpressAdminThemes_F71E/image67.png" border="0" alt="image" width="450" height="367" /></a></p>
<p><strong><a class="external-site-link" rel="nofollow" href="http://wordpress.org/extend/plugins/bm-custom-login/" target="_blank">Custom Login Page</a></strong></p>
<ul>
<li><strong>Requires WordPress Version:</strong> 2.0.2 or higher</li>
<li><strong>Compatible up to:</strong> 2.8</li>
</ul>
<p><a rel="nofollow" href="http://wordpress.org/extend/plugins/bm-custom-login/" target="_blank"><img style="border-top-width: 0px; display: inline; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/posts/10AwesomeWordpressAdminThemes_F71E/image72.png" border="0" alt="image" width="540" height="189" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigneronline.co.uk/16-awesome-wordpress-admin-themes-and-plugins/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>10 great Alternatives to phpMyAdmin</title>
		<link>http://www.webdesigneronline.co.uk/10-great-alternatives-to-phpmyadmin</link>
		<comments>http://www.webdesigneronline.co.uk/10-great-alternatives-to-phpmyadmin#comments</comments>
		<pubDate>Sat, 10 Oct 2009 15:32:29 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[Showcase]]></category>

		<guid isPermaLink="false">http://www.webdesigneronline.co.uk/?p=469</guid>
		<description><![CDATA[Most people in the web development world are under the impression that phpMyAdmin is the only MySQL client out there for websites. Going a step further, some users are aware of alternative however assume that phpMyAdmin is the best.
Now, I agree that phpMyAdmin is one of the best out there and is is very user [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2F10-great-alternatives-to-phpmyadmin"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2F10-great-alternatives-to-phpmyadmin" height="61" width="51" /></a></div><p>Most people in the web development world are under the impression that <a rel="nofollow" href="http://www.phpmyadmin.net/home_page/index.php" target="_blank">phpMyAdmin</a> is the only <a rel="nofollow" href="http://www.mysql.com/" target="_blank">MySQL</a> client out there for websites. Going a step further, some users are aware of alternative however assume that phpMyAdmin is the best.</p>
<p>Now, I agree that phpMyAdmin is one of the best out there and is is very user friendly. I myself also used phpMyAdmin much until recently&#8230; I got introduced to another program which within an hour became my favourite and also this led me to research others out there. Thus, this post!</p>
<h2>10 great Alternatives to phpMyAdmin</h2>
<p><a class="external-site-link" rel="nofollow" href="http://www.adminer.org/en/" target="_blank"><strong>Adminer</strong></a> <em>(formerly phpMinAdmin)</em></p>
<p>A full-featured MySQL management tool written in PHP. Does more or less everything phpMyAdmin however consist of a single file only that is ready to upload to your servers and connect to the DB.</p>
<p><a rel="nofollow" href="http://www.adminer.org/en/" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/2009/10/10greatAlternativestophpMyAdmin_14A17/image.png" border="0" alt="image" width="552" height="367" /></a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.navicat.com/en/index.html" target="_blank"><strong>Navicat</strong></a></p>
<p>This, in my opinion, is the best MySQL client out there. It does everything you want from a very user friendly interface. However, it doesn’t come free. There is a small price tag to it but is well worth it!</p>
<p><a rel="nofollow" href="http://www.navicat.com/en/index.html" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/2009/10/10greatAlternativestophpMyAdmin_14A17/image_3.png" border="0" alt="image" width="552" height="316" /></a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.sequelpro.com/" target="_blank"><strong>Sequel Pro</strong></a></p>
<p>One for the Mac users.</p>
<p><a rel="nofollow" href="http://www.sequelpro.com/" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/2009/10/10greatAlternativestophpMyAdmin_14A17/image_4.png" border="0" alt="image" width="552" height="295" /></a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.nerocode.com/" target="_blank"><strong>SQLWave</strong></a></p>
<p><a rel="nofollow" href="http://www.nerocode.com/" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/2009/10/10greatAlternativestophpMyAdmin_14A17/image_5.png" border="0" alt="image" width="552" height="284" /></a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.webyog.com/en/sqlyog_feature_list.php" target="_blank"><strong>SQLyog</strong></a></p>
<p><a rel="nofollow" href="http://www.webyog.com/en/sqlyog_feature_list.php" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/2009/10/10greatAlternativestophpMyAdmin_14A17/image_6.png" border="0" alt="image" width="552" height="300" /></a></p>
<p><a class="external-site-link" rel="nofollow" href="http://bluesql.com/" target="_blank"><strong>BlueSQL</strong></a></p>
<p>Free web based DB management tool.</p>
<p><a rel="nofollow" href="http://bluesql.com/" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/2009/10/10greatAlternativestophpMyAdmin_14A17/image_7.png" border="0" alt="image" width="552" height="304" /></a></p>
<p><a class="external-site-link" rel="nofollow" href="http://sqlbuddy.com/" target="_blank"><strong>SQL Buddy</strong></a></p>
<p><a rel="nofollow" href="http://sqlbuddy.com/" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/2009/10/10greatAlternativestophpMyAdmin_14A17/image_8.png" border="0" alt="image" width="552" height="369" /></a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.fabforce.net/dbdesigner4/" target="_blank"><strong>DBDesigner 4</strong></a></p>
<p><a rel="nofollow" href="http://www.fabforce.net/dbdesigner4/" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/2009/10/10greatAlternativestophpMyAdmin_14A17/image_9.png" border="0" alt="image" width="552" height="309" /></a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.sqlgate.com/product/product_detail.html?gubun=my" target="_blank"><strong>SQLGate</strong></a></p>
<p><a rel="nofollow" href="http://www.sqlgate.com/product/product_detail.html?gubun=my" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/2009/10/10greatAlternativestophpMyAdmin_14A17/image_10.png" border="0" alt="image" width="552" height="270" /></a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.heidisql.com/" target="_blank"><strong>HeidiSQL</strong></a></p>
<p><a rel="nofollow" href="http://www.heidisql.com/" target="_blank"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://www.webdesigneronline.co.uk/wp-content/uploads/2009/10/10greatAlternativestophpMyAdmin_14A17/image_11.png" border="0" alt="image" width="552" height="348" /></a></p>
<h2>Conclusion</h2>
<p>Navicat and Adminer are probably the only other MySQL Clients you need in addition to phpMyAdmin. The rest? I’ll leave them to you to discover which is best suited to you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigneronline.co.uk/10-great-alternatives-to-phpmyadmin/feed</wfw:commentRss>
		<slash:comments>55</slash:comments>
		</item>
		<item>
		<title>CSS Sprites Showcase</title>
		<link>http://www.webdesigneronline.co.uk/css-sprites-showcase</link>
		<comments>http://www.webdesigneronline.co.uk/css-sprites-showcase#comments</comments>
		<pubDate>Fri, 02 Oct 2009 18:59:54 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Showcase]]></category>
		<category><![CDATA[sprites]]></category>

		<guid isPermaLink="false">http://www.webdesigneronline.co.uk/?p=421</guid>
		<description><![CDATA[I&#8217;m going to skip the long introduction to CSS Sprites as they have been discussed in detail (see &#8216;Detailed tutorials&#8217; below) many times across many websites.
This post is primarily here to only showcase websites that use CSS Sprites.
What is an Image Sprite?
Basically, an image sprite is one big (master) image that contains many smaller images. [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2Fcss-sprites-showcase"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.webdesigneronline.co.uk%2Fcss-sprites-showcase" height="61" width="51" /></a></div><p>I&#8217;m going to skip the long introduction to CSS Sprites as they have been discussed in detail (see &#8216;Detailed tutorials&#8217; below) many times across many websites.</p>
<p><strong>This post is primarily here to only showcase websites that use CSS Sprites.</strong></p>
<h2>What is an Image Sprite?</h2>
<p>Basically, an image sprite is one big (master) image that contains many smaller images. Part of this master image is then used in different places on a webpage.</p>
<p>Ok, so why should I use this? Basically, it helps load web pages quicker as the server only needs to make 1 image request to the server as opposed to 27, say.</p>
<p>It&#8217;s tough to implement and not needed for a small site however for the larger ones, it&#8217;s strongly recommend.</p>
<p>You&#8217;ll have to see the showcase below to fully understand them.</p>
<h2>CSS Sprites showcase</h2>
<p><strong>Please note: I was going to display the image sprites on this page but due to their large size, thought it best to link to them directly.</strong></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.google.com/" target="_blank"><strong>Google</strong></a></p>
<p><a rel="nofollow" href="http://www.google.com/images/nav_logo6.png" target="_blank">http://www.google.com/images/nav_logo6.png</a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.aol.co.uk/" target="_blank"><strong>AOL</strong></a></p>
<p><a rel="nofollow" href="http://euhp4.aolcdn.com/os/repos/p/skn/blue_v1/12-blue_skin.png" target="_blank">http://euhp4.aolcdn.com/os/repos/p/skn/blue_v1/12-blue_skin.png<br />
</a><a rel="nofollow" href="http://euhp4.aolcdn.com/os/repos/logo/1-uk_logo_sprite" target="_blank">http://euhp4.aolcdn.com/os/repos/logo/1-uk_logo_sprite</a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.microsoft.com/" target="_blank"><strong>Microsoft</strong></a></p>
<p><a rel="nofollow" href="http://i3.microsoft.com/en/shared/templates/components/cspSearchComponent/sprite2.png" target="_blank">http://i3.microsoft.com/en/shared/&#8230;/cspSearchComponent/sprite2.png</a><br />
<a rel="nofollow" href="http://i3.microsoft.com/en/shared/Templates/Components/cspMscomNewsBand/NB_ltr.4.png" target="_blank"> http://i3.microsoft.com/en/shared/&#8230;/cspMscomNewsBand/NB_ltr.4.png</a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.yahoo.com/" target="_blank"><strong>Yahoo!</strong></a></p>
<p><a rel="nofollow" href="http://d.yimg.com/a/i/ww/met/gsprite_071309.gif" target="_blank">http://d.yimg.com/a/i/ww/met/gsprite_071309.gif</a><a rel="nofollow" href="http://d.yimg.com/a/i/ww/met/pa_icons/uk_pa_sprite_063009.png" target="_blank">http://d.yimg.com/a/i/ww/met/pa_icons/uk_pa_sprite_063009.png</a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.xing.com/de/" target="_blank"><strong>Xing</strong></a></p>
<p><a rel="nofollow" href="http://www.xing.com/img/v/header_r3.png" target="_blank">http://www.xing.com/img/v/header_r3.png</a><br />
<a rel="nofollow" href="http://www.xing.com/img/s/button_r3.png" target="_blank">http://www.xing.com/img/s/button_r3.png</a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.apple.com" target="_blank"><strong>Apple</strong></a></p>
<p><a rel="nofollow" href="http://images.apple.com/global/nav/images/globalnavbg.png" target="_blank">http://images.apple.com/global/nav/images/globalnavbg.png</a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.cnn.com"><strong>CNN</strong></a></p>
<p><a rel="nofollow" href="http://i.cdn.turner.com/cnn/.element/img/2.0/global/icons/share_sprite.gif" target="_blank">http://i.cdn.turner.com/cnn/.element/img/2.0/global/icons/share_sprite.gif</a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.digg.com"><strong>Digg</strong></a></p>
<p><a rel="nofollow" href="http://digg.com//img/menu-current.gif" target="_blank">http://digg.com//img/menu-current.gif</a></p>
<p><a class="external-site-link" rel="nofollow" href="http://dragoninteractive.com/" target="_blank"><strong>Dragon Interactive</strong></a></p>
<p><a rel="nofollow" href="http://dragoninteractive.com/lib/i/navigation/sprite.jpg" target="_blank">http://dragoninteractive.com/lib/i/navigation/sprite.jpg</a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.bing.com/" target="_blank"><strong>Bing</strong></a></p>
<p><a rel="nofollow" href="http://www.bing.com/fd/s/a/j.png" target="_blank">http://www.bing.com/fd/s/a/j.png</a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.amazon.com/" target="_blank"><strong>Amazon</strong></a></p>
<p><a rel="nofollow" href="http://g-ecx.images-amazon.com/images/G/01/gno/images/orangeBlue/navPackedSprites_v12._V222883957_.png" target="_blank">http://g-ecx.images-amazon.com/images/G/01/gno/&#8230;/navPackedSprites_v12._V222883957_.png</a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.youtube.com/" target="_blank"><strong>YouTube</strong></a></p>
<p><a rel="nofollow" href="http://s.ytimg.com/yt/img/master-vfl117997.png" target="_blank">http://s.ytimg.com/yt/img/master-vfl117997.png</a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.myspace.com/" target="_blank"><strong>MySpace</strong></a></p>
<p><a rel="nofollow" href="http://x.myspacecdn.com/modules/common/static/img/header/searchBg.gif" target="_blank">http://x.myspacecdn.com/modules/common/static/img/header/searchBg.gif</a><a rel="nofollow" href="http://x.myspacecdn.com/modules/common/static/img/header/header001.png" target="_blank">http://x.myspacecdn.com/modules/common/static/img/header/header001.png<br />
</a><a rel="nofollow" href="http://x.myspacecdn.com/modules/splash/static/img/cornersSheet.png" target="_blank">http://x.myspacecdn.com/modules/splash/static/img/cornersSheet.png</a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.bbc.co.uk/" target="_blank"><strong>BBC</strong></a></p>
<p><a rel="nofollow" href="http://wwwimg.bbc.co.uk/home/release-34-2/img/bgsprite.gif" target="_blank">http://wwwimg.bbc.co.uk/home/release-34-2/img/bgsprite.gif</a></p>
<p><a class="external-site-link" rel="nofollow" href="http://www.google.es/firefox" target="_blank"><strong>Firefox</strong></a> (<em>Thanks to <a href="http://www.tatuin.biz/">Esteban</a></em>)</p>
<p><a rel="nofollow" href="http://www.google.es/images/firefox/sprite2.png" target="_blank">http://www.google.es/images/firefox/sprite2.png</a></p>
<p><strong>If you know of any other, please post them in the comments!</strong></p>
<h2>Detailed tutorials</h2>
<p><a rel="nofollow" href="http://www.alistapart.com/articles/sprites" target="_blank">CSS Sprites: Image Slicing’s Kiss of Death</a><br />
<a rel="nofollow" href="http://www.smashingmagazine.com/2009/04/27/the-mystery-of-css-sprites-techniques-tools-and-tutorials/" target="_blank"> The Mystery Of CSS Sprites: Techniques, Tools And Tutorials</a><br />
<a rel="nofollow" href="http://css-tricks.com/css-sprites/" target="_blank"> CSS Sprites: What They Are, Why They’re Cool, and How To Use Them</a></p>
<p><strong>CSS Sprite Generator</strong></p>
<p>Please don&#8217;t complain, I&#8217;ve never used any of these!!</p>
<p><a rel="nofollow" href="http://printf.ru/spritr/" target="_blank">http://printf.ru/spritr/</a></p>
<p>You can upload multiple images using this tool and then generate the CSS code for the sprite.</p>
<p><a rel="nofollow" href="http://www.floweringmind.com/sprite-creator/index.php" target="_blank">http://www.floweringmind.com/sprite-creator/index.php</a></p>
<p>This tool is awesome. Upload your CSS Sprite image and then create the code for the various areas. (Difficult to get pixel perfect though)</p>
<p><a rel="nofollow" href="http://spritegen.website-performance.org/" target="_blank">http://spritegen.website-performance.org/</a></p>
<p><a rel="nofollow" href="http://www.csssprites.com/">http://www.csssprites.com/</a></p>
<h2>Conclusion</h2>
<p>The big question. Should you use CSS Image Sprites?</p>
<p>For most people, the answer is NO. It won&#8217;t make a difference to most websites and will only waste your time.</p>
<p>If your website receives hundreds of thousands of hits daily then you should consider using CSS Sprites to ease user experience.</p>
<p>For web design agencies, I would say it&#8217;s a must to attract large contracts.</p>
<p>Well, in the end, it&#8217;s your choice. It probably good do use CSS Sprites at least once to get a good feel for it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdesigneronline.co.uk/css-sprites-showcase/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
