<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>416 Studios</title>
	
	<link>http://www.416studios.co.uk/journal</link>
	<description>Web Design Articles, Tips and Musings</description>
	<lastBuildDate>Thu, 24 May 2012 12:55:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/416Studios" /><feedburner:info uri="416studios" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Youtube Style Animated Buttons</title>
		<link>http://feedproxy.google.com/~r/416Studios/~3/0yVva07nBLk/youtube-style-animated-buttons</link>
		<comments>http://www.416studios.co.uk/journal/2012/youtube-style-animated-buttons#comments</comments>
		<pubDate>Wed, 23 May 2012 17:04:13 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[buttons]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.416studios.co.uk/journal/?p=84</guid>
		<description><![CDATA[Look Ma! No images. A recreation of youtube footer buttons, with css3 and added animation goodness.]]></description>
			<content:encoded><![CDATA[<p>One of the things I&#8217;ve liked about the youtube website is the non-intrusive buttons at the bottom. Initially they look it&#8217;s just a borders text, but once you hover they become button-like with a recessed active state.</p>
<p><img class="aligncenter size-full wp-image-749" title="youtube" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/youtube.png" alt="A screen grab of youtube's footer area" width="564" height="108" /></p>
<p>First lets set up the html buttons. I plan to have 4 versions, the normal state, one with an arrow indicating a dropdown/sub menu another with css3 animation on hove and lastly a coloured version just for fun.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div id=&quot;youtube&quot;&gt;
&lt;button class=&quot;button&quot;&gt;Regular&lt;/button&gt; 
&lt;button class=&quot;button parent&quot;&gt;Dropdown&lt;/button&gt; 
&lt;button class=&quot;button animated&quot;&gt;Animated &lt;/button&gt; 
&lt;button class=&quot;button color&quot;&gt;Colored&lt;/button&gt;
&lt;/div&gt;</pre></div></div>

<p>I&#8217;ve added the extra class for the differing versions. Let&#8217;s now look at the css.</p>
<p>The initial state as follows:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.button</span> <span style="color: #00AA00;">&#123;</span>
 <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#DDD</span><span style="color: #00AA00;">;</span>
 border-radius<span style="color: #00AA00;">:</span> <span style="color: #933;">3px</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">text-shadow</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">1px</span> <span style="color: #933;">1px</span> <span style="color: #993333;">white</span><span style="color: #00AA00;">;</span>
 -webkit-box-shadow<span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">1px</span> <span style="color: #933;">1px</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
 -moz-box-shadow<span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">1px</span> <span style="color: #933;">1px</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
 box-shadow<span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">1px</span> <span style="color: #933;">1px</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">font</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">bold</span> <span style="color: #933;">11px</span> arial<span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">6px</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">white-space</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">nowrap</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">vertical-align</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">middle</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#666</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">transparent</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">cursor</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">pointer</span><span style="color: #00AA00;">;</span>
 margin-bottop<span style="color: #00AA00;">:</span><span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Nothing special here. A solid 1 pixel border with a white drop-shadow to mimic a recessed state. Next we add the hover state…</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.button</span><span style="color: #3333ff;">:hover</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.button</span><span style="color: #3333ff;">:focus </span><span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">border-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#999</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> -webkit-linear-gradient<span style="color: #00AA00;">&#40;</span><span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">white</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#E0E0E0</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> -moz-linear-gradient<span style="color: #00AA00;">&#40;</span><span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">white</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#E0E0E0</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> -ms-linear-gradient<span style="color: #00AA00;">&#40;</span><span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">white</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#E0E0E0</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> -o-linear-gradient<span style="color: #00AA00;">&#40;</span><span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">white</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#E0E0E0</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
-webkit-box-shadow<span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">1px</span> <span style="color: #933;">2px</span> rgba<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">0.25</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">inset</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">3px</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
-moz-box-shadow<span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">1px</span> <span style="color: #933;">2px</span> rgba<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">0.25</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">inset</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">3px</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
box-shadow<span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">1px</span> <span style="color: #933;">2px</span> rgba<span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">0.25</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">inset</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">3px</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>And a last bit for the active state.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.button</span><span style="color: #3333ff;">:active </span><span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#AAA</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border-bottom-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#CCC</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border-top-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#999</span><span style="color: #00AA00;">;</span>
-webkit-box-shadow<span style="color: #00AA00;">:</span> <span style="color: #993333;">inset</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">1px</span> <span style="color: #933;">2px</span> <span style="color: #cc00cc;">#aaa</span><span style="color: #00AA00;">;</span>
-moz-box-shadow<span style="color: #00AA00;">:</span> <span style="color: #993333;">inset</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">1px</span> <span style="color: #933;">2px</span> <span style="color: #cc00cc;">#aaa</span><span style="color: #00AA00;">;</span>
box-shadow<span style="color: #00AA00;">:</span> <span style="color: #993333;">inset</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">1px</span> <span style="color: #933;">2px</span> <span style="color: #cc00cc;">#aaa</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> -webkit-linear-gradient<span style="color: #00AA00;">&#40;</span><span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#E6E6E6</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> -moz-linear-gradient<span style="color: #00AA00;">&#40;</span><span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#E6E6E6</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> -ms-linear-gradient<span style="color: #00AA00;">&#40;</span><span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#E6E6E6</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> -o-linear-gradient<span style="color: #00AA00;">&#40;</span><span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">,</span> <span style="color: #cc00cc;">#E6E6E6</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>That&#8217;s it for the youtube buttons. If you want a bit of css3 animated goodness add this bit…</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.animated</span> <span style="color: #00AA00;">&#123;</span>
-webkit-transition<span style="color: #00AA00;">:</span> all 0.3s ease-in-out<span style="color: #00AA00;">;</span>
-moz-transition<span style="color: #00AA00;">:</span> all 0.3s ease-in-out<span style="color: #00AA00;">;</span>
-ms-transition<span style="color: #00AA00;">:</span> all 0.3s ease-in-out<span style="color: #00AA00;">;</span>
-o-transition<span style="color: #00AA00;">:</span> all 0.3s ease-in-out<span style="color: #00AA00;">;</span>
transition<span style="color: #00AA00;">:</span> all 0.3s ease-in-out<span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>And finally make it coloured with this snippet.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">.<span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">,</span> .<span style="color: #000000; font-weight: bold;">color</span><span style="color: #3333ff;">:hover </span><span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#E9BB8F</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
&nbsp;
.<span style="color: #000000; font-weight: bold;">color</span><span style="color: #3333ff;">:hover</span><span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">background-image</span><span style="color: #00AA00;">:</span> linear-gradient<span style="color: #00AA00;">&#40;</span><span style="color: #000000; font-weight: bold;">bottom</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">rgb</span><span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">201</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">161</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">127</span><span style="color: #00AA00;">&#41;</span> <span style="color: #933;">0%</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">rgb</span><span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">233</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">187</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">143</span><span style="color: #00AA00;">&#41;</span> <span style="color: #933;">50%</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background-image</span><span style="color: #00AA00;">:</span> -o-linear-gradient<span style="color: #00AA00;">&#40;</span><span style="color: #000000; font-weight: bold;">bottom</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">rgb</span><span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">201</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">161</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">127</span><span style="color: #00AA00;">&#41;</span> <span style="color: #933;">0%</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">rgb</span><span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">233</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">187</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">143</span><span style="color: #00AA00;">&#41;</span> <span style="color: #933;">50%</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background-image</span><span style="color: #00AA00;">:</span> -moz-linear-gradient<span style="color: #00AA00;">&#40;</span><span style="color: #000000; font-weight: bold;">bottom</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">rgb</span><span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">201</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">161</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">127</span><span style="color: #00AA00;">&#41;</span> <span style="color: #933;">0%</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">rgb</span><span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">233</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">187</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">143</span><span style="color: #00AA00;">&#41;</span> <span style="color: #933;">50%</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background-image</span><span style="color: #00AA00;">:</span> -webkit-linear-gradient<span style="color: #00AA00;">&#40;</span><span style="color: #000000; font-weight: bold;">bottom</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">rgb</span><span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">201</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">161</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">127</span><span style="color: #00AA00;">&#41;</span> <span style="color: #933;">0%</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">rgb</span><span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">233</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">187</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">143</span><span style="color: #00AA00;">&#41;</span> <span style="color: #933;">50%</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">background-image</span><span style="color: #00AA00;">:</span> -ms-linear-gradient<span style="color: #00AA00;">&#40;</span><span style="color: #000000; font-weight: bold;">bottom</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">rgb</span><span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">201</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">161</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">127</span><span style="color: #00AA00;">&#41;</span> <span style="color: #933;">0%</span><span style="color: #00AA00;">,</span> <span style="color: #993333;">rgb</span><span style="color: #00AA00;">&#40;</span><span style="color: #cc66cc;">233</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">187</span><span style="color: #00AA00;">,</span><span style="color: #cc66cc;">143</span><span style="color: #00AA00;">&#41;</span> <span style="color: #933;">50%</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>For the dropdown arrow we&#8217;re going to use the what I like to call the zero size transparent border technique, like so.</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.parent</span><span style="color: #3333ff;">:after </span><span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">content</span><span style="color: #00AA00;">:</span> <span style="color: #ff0000;">&quot;&quot;</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> inline-<span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border-top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#999</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">transparent</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">border-right</span><span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span> <span style="color: #993333;">solid</span> <span style="color: #993333;">transparent</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">4px</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>
<span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">-1px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.parent</span><span style="color: #3333ff;">:hover</span><span style="color: #3333ff;">:after </span><span style="color: #00AA00;">&#123;</span>
<span style="color: #000000; font-weight: bold;">border-top-color</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">black</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>There you have it, css only youtube style buttons. Play around with the code in the fiddle below, remember with great power comes great responsibility.</p>
<p><iframe style="width: 100%; height: 300px;" src="http://jsfiddle.net/michaeld/dW3q4/3/embedded/result,html,css/presentation/" frameborder="0" width="320" height="240"></iframe></p>
<img src="http://feeds.feedburner.com/~r/416Studios/~4/0yVva07nBLk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.416studios.co.uk/journal/2012/youtube-style-animated-buttons/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.416studios.co.uk/journal/2012/youtube-style-animated-buttons</feedburner:origLink></item>
		<item>
		<title>20+ Facebook Timeline Covers</title>
		<link>http://feedproxy.google.com/~r/416Studios/~3/IYByUyr9RvM/free-facebook-timeline-covers</link>
		<comments>http://www.416studios.co.uk/journal/2012/free-facebook-timeline-covers#comments</comments>
		<pubDate>Mon, 21 May 2012 16:25:36 +0000</pubDate>
		<dc:creator>Margot</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[facebook timeline]]></category>
		<category><![CDATA[facebook timeline cover]]></category>
		<category><![CDATA[FB cover]]></category>
		<category><![CDATA[FB timeline image]]></category>
		<category><![CDATA[FB timeline photo]]></category>
		<category><![CDATA[timeline cover photos]]></category>

		<guid isPermaLink="false">http://www.416studios.co.uk/journal/?p=673</guid>
		<description><![CDATA[Facebook timeline cover photos, ready to upload to your personal FB profile. 
Images or food, flowers, landscapes and more...]]></description>
			<content:encoded><![CDATA[<div id="attachment_693" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-10.jpg"><img class="size-large wp-image-693" title="Facebook Timeline Cover Image" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-10-thumb-600x221.jpg" alt="free FB timeline cover" width="600" height="221" /></a><p class="wp-caption-text">cupcake</p></div>
<div id="attachment_720" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-4.jpg"><img class="size-full wp-image-720" title="Facebook Timeline Cover Image " src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-4-thumb.jpg" alt="free FB timeline cover" width="600" height="221" /></a><p class="wp-caption-text">Poland</p></div>
<div id="attachment_724" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-17.jpg"><img class="size-full wp-image-724 " title="Facebook Timeline Image" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-17-thumb.jpg" alt="free Facebook cover image" width="600" height="221" /></a><p class="wp-caption-text">tiger lily</p></div>
<div id="attachment_705" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-16.jpg"><img class="size-large wp-image-705 " title="Facebook Timeline Cover Image" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-16-thumb-600x221.jpg" alt="free FB timeline cover" width="600" height="221" /></a><p class="wp-caption-text">romanesco</p></div>
<div id="attachment_732" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-21.jpg"><img class="size-full wp-image-732" title="FB Timeline Cover Image" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-21-thumb.jpg" alt="free FB timeline cover image" width="600" height="221" /></a><p class="wp-caption-text">stripy fabric</p></div>
<div id="attachment_679" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-3.jpg"><img class="size-full wp-image-679" title="Facebook Timeline Cover Image" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-3-thumb.jpg" alt="free FB timeline cover" width="600" height="221" /></a><p class="wp-caption-text">the Caribbean</p></div>
<div id="attachment_726" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-18.jpg"><img class="size-full wp-image-726" title="FB Cover Image" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-18-thumb.jpg" alt="free FB cover image" width="600" height="221" /></a><p class="wp-caption-text">cream rose</p></div>
<div id="attachment_677" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-2.jpg"><img class="size-full wp-image-677" title="Facebook Timeline Cover Image" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-2-thumb.jpg" alt="free FB timeline cover" width="600" height="221" /></a><p class="wp-caption-text">fruit tartlets</p></div>
<div id="attachment_728" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-19.jpg"><img class="size-full wp-image-728" title="FB Timeline Cover Photo" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-19-thumb.jpg" alt="free FB timeline cover photo" width="600" height="221" /></a><p class="wp-caption-text">cantaloupe melon</p></div>
<div id="attachment_703" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-15.jpg"><img class="size-large wp-image-703" title="Facebook Timeline Cover Image" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-15-thumb-600x221.jpg" alt="free FB timeline cover" width="600" height="221" /></a><p class="wp-caption-text">paper crafts</p></div>
<div id="attachment_675" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-1.jpg"><img class="size-full wp-image-675" title="Facebook Timeline Cover Image" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-1-thumb.jpg" alt="free FB timeline cover" width="600" height="221" /></a><p class="wp-caption-text">rice salad</p></div>
<div id="attachment_691" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-9.jpg"><img class="size-large wp-image-691" title="Facebook Timeline Cover Image" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-9-thumb-600x221.jpg" alt="free FB timeline cover" width="600" height="221" /></a><p class="wp-caption-text">pub</p></div>
<div id="attachment_683" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-5.jpg"><img class="size-full wp-image-683" title="Facebook Timeline Cover Image" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-5-thumb.jpg" alt="free FB timeline cover" width="600" height="221" /></a><p class="wp-caption-text">water drop</p></div>
<div id="attachment_730" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-20.jpg"><img class="size-full wp-image-730" title="FB Timeline Cover Photo" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-20-thumb.jpg" alt="free FB timeline cover photo" width="600" height="221" /></a><p class="wp-caption-text">crab’s eye beans</p></div>
<div id="attachment_699" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-13.jpg"><img class="size-large wp-image-699" title="Facebook Timeline Cover Image" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-13-thumb-600x221.jpg" alt="free FB timeline cover" width="600" height="221" /></a><p class="wp-caption-text">peach seed</p></div>
<div id="attachment_685" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-6.jpg"><img class="size-full wp-image-685" title="Facebook Timeline Cover Image" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-6-thumb.jpg" alt="free FB timeline cover" width="600" height="221" /></a><p class="wp-caption-text">mini flowers</p></div>
<div id="attachment_695" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-11.jpg"><img class="size-large wp-image-695" title="Facebook Timeline Cover Image" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-11-thumb-600x221.jpg" alt="free FB timeline cover" width="600" height="221" /></a><p class="wp-caption-text">Hello Kitty cake</p></div>
<div id="attachment_687" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-7.jpg"><img class="size-full wp-image-687" title="Facebook Timeline Cover Image" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-7-thumb.jpg" alt="free FB timeline cover" width="600" height="221" /></a><p class="wp-caption-text">Bermondsey, London</p></div>
<div id="attachment_701" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-14.jpg"><img class="size-large wp-image-701" title="Facebook Timeline Cover Image" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-14-thumb-600x221.jpg" alt="free FB timeline cover" width="600" height="221" /></a><p class="wp-caption-text">green peas</p></div>
<div id="attachment_689" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-8.jpg"><img class="size-full wp-image-689" title="Facebook Timeline Cover Image" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-8-thumb.jpg" alt="free FB timeline cover" width="600" height="221" /></a><p class="wp-caption-text">flower stall</p></div>
<div id="attachment_697" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-12.jpg"><img class="size-large wp-image-697" title="Facebook Timeline Cover Image" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-12-thumb-600x221.jpg" alt="free FB timeline cover" width="600" height="221" /></a><p class="wp-caption-text">chocolates</p></div>
<p>To change the FB cover photo:</p>
<ul>
<li>First click to open and save one of the above images to your computer.</li>
<li>Then in your Facebook account go to your profile page -&gt; Change Cover -&gt; Upload photo.</li>
<li>Browse and choose previously uploaded image to your computer and then &#8220;Save Changes&#8221;.</li>
</ul>
<p><img class="alignnone size-full wp-image-713" title="How To Chance Facebook Timeline Cover " src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/FB-timeline-cover-how-to.jpg" alt="changing FB timeline photo" width="600" height="245" /></p>
<p>We will be updating this post with more timeline cover photos shortly, so follow as on <a href="https://twitter.com/#!/416studios" target="_blank">Twitter</a> or <a href="http://www.facebook.com/416studios" target="_blank">Facebook</a> to be the first to know.</p>
<img src="http://feeds.feedburner.com/~r/416Studios/~4/IYByUyr9RvM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.416studios.co.uk/journal/2012/free-facebook-timeline-covers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.416studios.co.uk/journal/2012/free-facebook-timeline-covers</feedburner:origLink></item>
		<item>
		<title>Smashing WordPress Themes: Making WordPress Beautiful by Thord Daniel Hedengren – Book Review</title>
		<link>http://feedproxy.google.com/~r/416Studios/~3/6VJuLT9FhOM/smashing-wordpress-themes-making-wordpress-beautiful-by-thord-daniel-hedengren-book-review</link>
		<comments>http://www.416studios.co.uk/journal/2012/smashing-wordpress-themes-making-wordpress-beautiful-by-thord-daniel-hedengren-book-review#comments</comments>
		<pubDate>Sun, 13 May 2012 19:30:19 +0000</pubDate>
		<dc:creator>Margot</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[book review]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[Smashing Magazine]]></category>
		<category><![CDATA[Smashing WordPress Themes: Making WordPress Beautiful]]></category>
		<category><![CDATA[Thord Daniel Hedengren]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress themes]]></category>

		<guid isPermaLink="false">http://www.416studios.co.uk/journal/?p=649</guid>
		<description><![CDATA[First let me say that Smashing WordPress Themes focuses solely on WordPress theme development, it is for those who have an adequate understanding of CSS and PHP and are looking get under the hood of a Wordpress theme. ]]></description>
			<content:encoded><![CDATA[<div id="attachment_662" class="wp-caption alignnone" ><img class="size-full wp-image-662" title="Smashing WordPress Themes: Making WordPress Beautiful by Thord Daniel Hedengren " src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/Smashing-WordPress-Themes.jpg" alt="Smashing Magazine book" width="400" height="500" /><p class="wp-caption-text">Smashing WordPress Themes by Thord Daniel Hedengren</p></div>
<p>First let me say that <a href="http://www.amazon.co.uk/gp/product/047066990X?ie=UTF8&amp;tag=coffandvani-21&amp;linkCode=xm2&amp;camp=1634&amp;creativeASIN=047066990X" target="_blank">Smashing WordPress Themes</a> focuses solely on WordPress theme development, it is for those who have an adequate understanding of CSS and PHP and are looking get under the hood of a WordPress theme. If you are looking to learn about building websites then this book is not for you.</p>
<p>Having been disappointed with a previous offering from Smashing Magazine I had low expectations going into this book &#8211; I shouldn&#8217;t have. This book is great, it really gets down to the nuts and bolts of a WordPress theme. Everything from simple tweaks to the default Twenty-ten theme, to creating your own theme. It even touches on Buddypress.<br />
Not only will you learn how to build themes but it helps you with design, layout and planning issues that other books of this type tend to ignore.</p>
<p>Expect to get your hands dirty but don&#8217;t be daunted by the technical stuff as the author explains whats going on every step of the way. The explanations are clear and makes things easy to understand.<br />
Again it is for WordPress beginners, if you don&#8217;t have some understanding of PHP, CSS and HTML then this book will not be rewarding. However if you do and your are looking to delve into WordPress, then it is highly recommended.</p>
<p><span style="text-decoration: underline;"><strong>“Smashing WordPress Themes: Making WordPress Beautiful”</strong></span></p>
<p>AUTHOR: Thord Daniel Hedengren<br />
PUBLISHER: John Wiley &amp; Sons<br />
FORMAT: Paperback<br />
SIZE: 23.5 x 18.7 x 2 cm<br />
PAGES: 368<br />
LANGUAGE: English<br />
ISBN: 978-0470669907<br />
PUBLISHED: 11th February 2011</p>
<p><strong>A good book for getting under the hood of WordPress.</strong></p>
<p><em><strong>4 out of 5 stars</strong></em></p>
<p><em>Disclaimer: We have received this product free as a part of Amazon Vine™ Programme and you can find this article between our other reviews on <a href="https://www.amazon.co.uk/gp/cdp/member-reviews/A8EGXZQIIQTJH/ref=ya__26?ie=UTF8&amp;sort_by=MostRecentReview" target="_blank">Amazon website</a>.</em></p>
<p><em>Photos: courtesy of <a href="https://www.amazon.co.uk" target="_blank">Amazon.co.uk</a>.</em></p>
<img src="http://feeds.feedburner.com/~r/416Studios/~4/6VJuLT9FhOM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.416studios.co.uk/journal/2012/smashing-wordpress-themes-making-wordpress-beautiful-by-thord-daniel-hedengren-book-review/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.416studios.co.uk/journal/2012/smashing-wordpress-themes-making-wordpress-beautiful-by-thord-daniel-hedengren-book-review</feedburner:origLink></item>
		<item>
		<title>Smashing jQuery: Professional Techniques with Ajax and jQuery by Jake Rutter – Book Review</title>
		<link>http://feedproxy.google.com/~r/416Studios/~3/TDgnA2Je4-k/smashing-jquery-professional-techniques-with-ajax-and-jquery-by-jake-rutter-book-review</link>
		<comments>http://www.416studios.co.uk/journal/2012/smashing-jquery-professional-techniques-with-ajax-and-jquery-by-jake-rutter-book-review#comments</comments>
		<pubDate>Sun, 13 May 2012 19:21:55 +0000</pubDate>
		<dc:creator>Margot</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[Jake Rutter]]></category>
		<category><![CDATA[jQuery book]]></category>
		<category><![CDATA[Smashing JQuery: Professional Techniques with Ajax and JQuery]]></category>
		<category><![CDATA[Smashing Magazine]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.416studios.co.uk/journal/?p=648</guid>
		<description><![CDATA[Aimed at beginners, with sound explanations of the basic concepts of jQuery, from selectors, filters, working with events and effects to more advanced stuff like handling ajax requests with jQuery and plugin development.]]></description>
			<content:encoded><![CDATA[<div id="attachment_659" class="wp-caption alignnone" ><img class="size-full wp-image-659" title="Smashing jQuery by Jake Rutter" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/Smashing-JQuery.jpg" alt="Smashing Magazine Book" width="400" height="500" /><p class="wp-caption-text">Smashing JQuery by Jake Rutter</p></div>
<p><a href="http://www.amazon.co.uk/gp/product/047097723X?ie=UTF8&amp;tag=coffandvani-21&amp;linkCode=xm2&amp;camp=1634&amp;creativeASIN=047097723X" target="_blank">Smashing jQuery</a> is aimed at beginners, with sound explanations of the basic concepts of jQuery, from selectors, filters, working with events and effects to more advanced stuff like handling ajax requests with jQuery and plugin development.<br />
It provides best practices tips and pointers. Beginners using this book will come out with a good understanding of jQuery and how to put it to use. Items are explained and followed by a practical example using the item being explained.</p>
<p>The presentation is great, with lots of pictures which you would not necessarily expect in that type of book. Especially nice are the images with the Firebug panel open.</p>
<p>It&#8217;s not all good news though. It&#8217;s sad to see that coding examples in the book contain errors, the type that should not make it&#8217;s way any book. Simple things that would be caught by the simplest of proofing.<br />
When most of the explanations presented in the book is backed up by code examples it is a worry that any of those examples are broken.</p>
<p>I can&#8217;t compare it to anything else on the market as this is the only jQuery book I&#8217;ve read but I&#8217;m willing to bet that there are better buys out there.</p>
<p><span style="text-decoration: underline;"><strong>“Smashing JQuery: Professional Techniques with Ajax and JQuery”</strong></span></p>
<p>AUTHOR: Jake Rutter<br />
PUBLISHER: John Wiley &amp; Sons<br />
FORMAT: Paperback<br />
SIZE: 23.5 x 18.9 x 1.9 cm<br />
PAGES: 336<br />
LANGUAGE: English<br />
ISBN: 978-0470977231<br />
PUBLISHED: 4th February 2011</p>
<p><strong>Coding examples in the book contain errors.</strong></p>
<p><em><strong>3 out of 5 stars</strong></em></p>
<p><em>Disclaimer: We have received this product free as a part of Amazon Vine™ Programme and you can find this article between our other reviews on <a href="https://www.amazon.co.uk/gp/cdp/member-reviews/A8EGXZQIIQTJH/ref=ya__26?ie=UTF8&amp;sort_by=MostRecentReview" target="_blank">Amazon website</a>.</em></p>
<p><em>Photos: courtesy of <a href="https://www.amazon.co.uk" target="_blank">Amazon.co.uk</a>.</em></p>
<img src="http://feeds.feedburner.com/~r/416Studios/~4/TDgnA2Je4-k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.416studios.co.uk/journal/2012/smashing-jquery-professional-techniques-with-ajax-and-jquery-by-jake-rutter-book-review/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.416studios.co.uk/journal/2012/smashing-jquery-professional-techniques-with-ajax-and-jquery-by-jake-rutter-book-review</feedburner:origLink></item>
		<item>
		<title>Twitter Themes / Backgrounds</title>
		<link>http://feedproxy.google.com/~r/416Studios/~3/zrx0NBU1Zk4/free-twitter-themes-backgrounds</link>
		<comments>http://www.416studios.co.uk/journal/2012/free-twitter-themes-backgrounds#comments</comments>
		<pubDate>Wed, 09 May 2012 21:06:06 +0000</pubDate>
		<dc:creator>Margot</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[free Twitter backgrounds]]></category>
		<category><![CDATA[free twitter themes]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[Twitter background]]></category>
		<category><![CDATA[Twitter backgrounds]]></category>
		<category><![CDATA[Twitter theme]]></category>
		<category><![CDATA[Twitter themes]]></category>

		<guid isPermaLink="false">http://www.416studios.co.uk/journal/?p=597</guid>
		<description><![CDATA[To change Twitter theme: First click to open and save one of the below images to your computer.
Then in your Twitter account go to Settings -> Design -> Customize your own.]]></description>
			<content:encoded><![CDATA[<div id="attachment_602" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/twitter-bg-by-416studios-pink-flower.jpg"><img class="size-full wp-image-602  " title="Twitter Theme - Pink Flower" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/twitter-bg-by-416studios-pink-flower-thumb.jpg" alt="free Twitter themes backgrounds" width="600" height="200" /></a><p class="wp-caption-text">recommended background colour: #ffffff (white) &amp; links colour: #c1248f (pink)</p></div>
<div id="attachment_631" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/twitter-bg-by-416studios-grey-cherry-blossom.jpg"><img class="size-full wp-image-631" title="Grey Cherry Blossom Twitter Background" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/twitter-bg-by-416studios-grey-cherry-blossom-thumb.jpg" alt="free Twitter background theme cherry blossom grey" width="600" height="200" /></a><p class="wp-caption-text">recommended background colour: #ffffff (white) &amp; links colour: #e3105b (reddish pink)</p></div>
<div id="attachment_632" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/twitter-bg-by-416studios-duck-egg-cherry-blossom.jpg"><img class="size-full wp-image-632" title="Duck Egg Cherry Blossom Twitter Background" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/twitter-bg-by-416studios-duck-egg-cherry-blossom-thumb.jpg" alt="free Twitter theme cherry blossom duck egg" width="600" height="200" /></a><p class="wp-caption-text">recommended background colour: #ffffff (white) &amp; links colour: #4d9a9f (duck egg)</p></div>
<div id="attachment_633" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/twitter-bg-by-416studios-red-cherry-blossom.jpg"><img class="size-full wp-image-633" title="Red Cherry Blossom Twitter Theme" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/twitter-bg-by-416studios-red-cherry-blossom-thumb.jpg" alt="free Twitter background cherry blossom red" width="600" height="200" /></a><p class="wp-caption-text">recommended background colour: #ffffff (white) &amp; links colour: #bb5b74 (beetroot)</p></div>
<div id="attachment_634" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/twitter-bg-by-416studios-sepia-cherry-blossom.jpg"><img class="size-full wp-image-634" title="Sepia Cherry Blossom Twitter Theme" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/twitter-bg-by-416studios-sepia-cherry-blossom-thumb.jpg" alt="free Twitter background cherry blossom in sepia" width="600" height="200" /></a><p class="wp-caption-text">recommended background colour: #ffffff (white) &amp; links colour: #958860 (khaki)</p></div>
<div id="attachment_604" class="wp-caption alignnone" ><a href="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/twitter-bg-by-416studios-paper-crafts.jpg"><img class="size-full wp-image-604" title="Twitter Background - Paper Crafts" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/twitter-bg-by-416studios-paper-crafts-thumb.jpg" alt="free twitter background theme" width="600" height="200" /></a><p class="wp-caption-text">recommended background colour: #ffffff (white) &amp; links colour: #d9327a (pink), #28b38e (green) or #4165c8 (blue)</p></div>
<p>To change the Twitter theme:</p>
<ul>
<li>First click to open and save one of the above images to your computer.</li>
<li>Then in your Twitter account go to Settings -&gt; Design -&gt; Customize your own.</li>
<li>Browse and choose previously uploaded image to your computer, do not tick &#8220;tile background&#8221;.</li>
<li>Change colours of the background and links as recommended.</li>
<li>Save changes.</li>
</ul>
<p><img class="alignnone size-full wp-image-608" title="Twitter Print Screen" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/twitter-print-screen.jpg" alt="how to change Twitter theme" width="600" height="321" /><br />
We will be updating this post with more Twitter backgrounds shortly, so stay tuned.</p>
<img src="http://feeds.feedburner.com/~r/416Studios/~4/zrx0NBU1Zk4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.416studios.co.uk/journal/2012/free-twitter-themes-backgrounds/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.416studios.co.uk/journal/2012/free-twitter-themes-backgrounds</feedburner:origLink></item>
		<item>
		<title>Some of Our Favourite Colour Palettes</title>
		<link>http://feedproxy.google.com/~r/416Studios/~3/J4YunnHTqkk/web-colour-palettes</link>
		<comments>http://www.416studios.co.uk/journal/2012/web-colour-palettes#comments</comments>
		<pubDate>Mon, 07 May 2012 21:18:37 +0000</pubDate>
		<dc:creator>Margot</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[color palettes]]></category>
		<category><![CDATA[color themes]]></category>
		<category><![CDATA[colour palettes]]></category>
		<category><![CDATA[colour theme]]></category>
		<category><![CDATA[colour themes]]></category>
		<category><![CDATA[matching colors]]></category>
		<category><![CDATA[matching colours]]></category>
		<category><![CDATA[right colour]]></category>
		<category><![CDATA[web colour palette]]></category>
		<category><![CDATA[web colours]]></category>

		<guid isPermaLink="false">http://www.416studios.co.uk/journal/?p=546</guid>
		<description><![CDATA[Choosing the right colour palette for your project can be time consuming. This is why we like to save colour themes...]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Choosing the right colour palette for your project can be time consuming. This is why we like to save colour themes, used on websites and other assignments we were working on, for future reference.</p>
<div id="attachment_549" class="wp-caption alignnone" ><img class="size-full wp-image-549" title="Grey-Orange Web Colour Palette " src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/web-colour-palette-416studios-blog.jpg" alt="grey orange green blue colour theme" width="600" height="196" /><p class="wp-caption-text">colour palette used on this blog</p></div>
<div id="attachment_579" class="wp-caption alignnone" ><img class="size-full wp-image-579" title="Retro Cream Red Brown Colour Theme" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/web-colour-palette-retro-red-cream-brown.jpg" alt="retro cream red brown color palette" width="600" height="196" /><p class="wp-caption-text">retro cream, red and brown colour theme</p></div>
<div id="attachment_591" class="wp-caption alignnone" ><img class="size-full wp-image-591" title="Fresh Salad Colour Theme" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/web-colour-palette-salad.jpg" alt="tomato cucumber salad color palette" width="600" height="196" /><p class="wp-caption-text">fresh salad colour theme</p></div>
<div id="attachment_645" class="wp-caption alignnone" ><img class="size-full wp-image-645" title="Honey Comb Colour Palette" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/web-colour-palette-honey.jpg" alt="summer colour theme honey and fields" width="600" height="196" /><p class="wp-caption-text">summer colour palette</p></div>
<div id="attachment_573" class="wp-caption alignnone" ><img class="size-full wp-image-573" title="Web Colour Palette for Bèlbagay Shop" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/web-colour-palette-belbagay.jpg" alt="green deep orange grey theme" width="600" height="196" /><p class="wp-caption-text">green, grey and deep orange colour theme for Bèlbagay website</p></div>
<div id="attachment_553" class="wp-caption alignnone" ><img class="size-full wp-image-553" title="Web Colour Palette Pink and Brown" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/web-colour-palette-pink-brown.jpg" alt="pink brown colour theme" width="600" height="196" /><p class="wp-caption-text">web colour palette with pink, brown and turquoise</p></div>
<div id="attachment_589" class="wp-caption alignnone" ><img class="size-full wp-image-589" title="Old Poster Colour Theme" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/web-colour-palette-aged-poster.jpg" alt="aged poster color theme" width="600" height="196" /><p class="wp-caption-text">black, red and blue old poster colour theme</p></div>
<div id="attachment_642" class="wp-caption alignnone" ><img class="size-full wp-image-642" title="Floral Colour Palette" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/web-colour-palette-floral.jpg" alt="floral colour theme pinks reds navy blue" width="600" height="196" /><p class="wp-caption-text">floral colour palette</p></div>
<div id="attachment_643" class="wp-caption alignnone" ><img class="size-full wp-image-643" title="Web Colour Palette Froze Fruit" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/web-colour-palette-frozen-fruit.jpg" alt="frozen fruity colour palette" width="600" height="196" /><p class="wp-caption-text">autumn colour palette</p></div>
<div id="attachment_561" class="wp-caption alignnone" ><img class="size-full wp-image-561" title="Aquamarine and Olive Web Colour Palette" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/web-colour-palette-coffee-n-vanilla.jpg" alt="aquamarine olive colour theme" width="600" height="196" /><p class="wp-caption-text">aquamarine &amp; olive colour palette for food blog coffeeandvanilla.com</p></div>
<div id="attachment_576" class="wp-caption alignnone" ><img class="size-full wp-image-576" title="Online Gift Shop Colour Theme" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/web-colour-palette-giftsbymarissa.jpg" alt="rasta color theme online shop " width="600" height="196" /><p class="wp-caption-text">red, yellow and green colour theme for online shop giftsbymarissa.com</p></div>
<div id="attachment_563" class="wp-caption alignnone" ><img class="size-full wp-image-563" title="Colour Theme from Gocha.co.uk" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/web-colour-palette-gocha.jpg" alt="purple baby blue colour palette " width="600" height="196" /><p class="wp-caption-text">baby blue &amp; purple colour palette for micro site gocha.co.uk</p></div>
<div id="attachment_571" class="wp-caption alignnone" ><img class="size-full wp-image-571" title="Folk Web Colour Palette" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/web-colour-palette-folk.jpg" alt="folk colour theme pink yellow green" width="600" height="196" /><p class="wp-caption-text">pink, yellow and green folk colour palette</p></div>
<div id="attachment_566" class="wp-caption alignnone" ><img class="size-full wp-image-566" title="Retro Colour Palette" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/web-colour-palette-retro.jpg" alt="retro colour theme red grey navy" width="600" height="196" /><p class="wp-caption-text">red, grey &amp; navy retro colour palette</p></div>
<div id="attachment_568" class="wp-caption alignnone" ><img class="size-full wp-image-568" title="Web Colour Palette for Bigos UK" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/web-colour-palette-bigos-uk.jpg" alt="four season colour theme " width="600" height="196" /><p class="wp-caption-text">four seasons colour palette for bigos-uk.com</p></div>
<div id="attachment_550" class="wp-caption alignnone" ><img class="size-full wp-image-550" title="Deep Pink &amp; Aqua Web Colour Palette" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/web-colour-palette-deep-pink-aqua.jpg" alt="deep pink aqua marine grey blue colour theme " width="600" height="196" /><p class="wp-caption-text">pink &amp; aqua colour palette</p></div>
<div id="attachment_556" class="wp-caption alignnone" ><img class="size-full wp-image-556" title="Web Colour Palette Retro Green Blue Yellow" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/web-colour-palette-retro-green-blue-yellow.jpg" alt="retro theme green yellow and blue " width="600" height="196" /><p class="wp-caption-text">web colour palette in retro green, yellow and blue</p></div>
<div id="attachment_580" class="wp-caption alignnone" ><img class="size-full wp-image-580" title="Bedroom Lamp Colour Theme" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/web-colour-palette-bedroom-lamp.jpg" alt="bedroom lamp color palette" width="600" height="196" /><p class="wp-caption-text">colour palette for bedroom lamp project</p></div>
<div id="attachment_574" class="wp-caption alignnone" ><img class="size-full wp-image-574" title="Web Colour Theme for Football Blog" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/web-colour-palette-wengerball.jpg" alt="football blog web colour palette" width="600" height="196" /><p class="wp-caption-text">colour theme for football blog wengerball.com</p></div>
<div id="attachment_552" class="wp-caption alignnone" ><img class="size-full wp-image-552" title="Web Colour Palette Retro Red Beige and Blue" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/web-colour-palette-retro-red-beige-blue.jpg" alt="retro colour theme red grey beige blue" width="600" height="196" /><p class="wp-caption-text">retro colour palette with red &amp; beige</p></div>
<div id="attachment_557" class="wp-caption alignnone" ><img class="size-full wp-image-557" title="Web Colour Palette with Yellow and Blue" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/web-colour-palette-yellow-blue.jpg" alt="yellow and blue colour theme" width="600" height="196" /><p class="wp-caption-text">web colour palette with yellow and blue</p></div>
<p><em>This post will be updated with new colours so feel free to bookmark it for future reference.</em></p>
<img src="http://feeds.feedburner.com/~r/416Studios/~4/J4YunnHTqkk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.416studios.co.uk/journal/2012/web-colour-palettes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.416studios.co.uk/journal/2012/web-colour-palettes</feedburner:origLink></item>
		<item>
		<title>Experimenting with Water Drops</title>
		<link>http://feedproxy.google.com/~r/416Studios/~3/9ST9m9OUAk8/experimenting-with-water-drops</link>
		<comments>http://www.416studios.co.uk/journal/2012/experimenting-with-water-drops#comments</comments>
		<pubDate>Sat, 05 May 2012 17:00:26 +0000</pubDate>
		<dc:creator>Margot</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[drop macro]]></category>
		<category><![CDATA[drop photos]]></category>
		<category><![CDATA[drops]]></category>
		<category><![CDATA[macro]]></category>
		<category><![CDATA[macros]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[water drop]]></category>
		<category><![CDATA[water drops]]></category>

		<guid isPermaLink="false">http://www.416studios.co.uk/journal/?p=260</guid>
		<description><![CDATA[Our inspiration was macro photography by Andreas Stridsberg.
The liquid used for the shots is plain water...]]></description>
			<content:encoded><![CDATA[<p>Below couple of water drop photos we have taken a while ago&#8230; Our inspiration was macro photography by <a href="http://www.mystic-pic.com/" target="_blank">Andreas Stridsberg</a>.</p>
<p>The liquid used for the shots is plain water and the colour is determined by the reflection from  the containers / plastic basins we were using, it was also a little bit enhanced afterwards in post production.</p>
<div id="attachment_459" class="wp-caption alignnone" ><img class="size-full wp-image-459" title="Little Blue Water Drop" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/01/short-blue-drop-macro.jpg" alt="drop macro blue drop" width="600" height="400" /><p class="wp-caption-text">Little Blue Water Drop Macro</p></div>
<div id="attachment_460" class="wp-caption alignnone" ><img class="size-full wp-image-460" title="Purple Water Drop Macro" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/purple-drop-macro.jpg" alt="macro photography macro photos " width="600" height="400" /><p class="wp-caption-text">Purple Water Drop Macro</p></div>
<div id="attachment_461" class="wp-caption alignnone" ><img class="size-full wp-image-461" title="Green Water Drop Macro" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/marine-drop-macro.jpg" alt="macro shots macro droplets" width="600" height="400" /><p class="wp-caption-text">Green Water Drop Macro</p></div>
<div id="attachment_462" class="wp-caption alignnone" ><img class="size-full wp-image-462" title="Long Blue Water Drop Macro" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/05/blue-drop-macro.jpg" alt="blue drop macro shot water shots" width="600" height="400" /><p class="wp-caption-text">Long Blue Water Drop Macro</p></div>
<ul>
<li>Photography: Michael DYER of 416 Studios.</li>
<li>Some of the images can be purchased via <a href="http://www.giftsbymarissa.com/artworks.php">Gifts by Marissa</a>.</li>
</ul>
<img src="http://feeds.feedburner.com/~r/416Studios/~4/9ST9m9OUAk8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.416studios.co.uk/journal/2012/experimenting-with-water-drops/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.416studios.co.uk/journal/2012/experimenting-with-water-drops</feedburner:origLink></item>
		<item>
		<title>ZTE Tania Windows Smartphone – Review</title>
		<link>http://feedproxy.google.com/~r/416Studios/~3/pguuCU4cPnI/zte-tania-windows-smartphone</link>
		<comments>http://www.416studios.co.uk/journal/2012/zte-tania-windows-smartphone#comments</comments>
		<pubDate>Tue, 24 Apr 2012 13:02:31 +0000</pubDate>
		<dc:creator>Margot</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[smart phone]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[touch phone]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows phone]]></category>
		<category><![CDATA[ZTE]]></category>
		<category><![CDATA[ZTE Tania]]></category>

		<guid isPermaLink="false">http://www.416studios.co.uk/journal/?p=391</guid>
		<description><![CDATA[If you are thinking of a budget smartphone the ZTE Tania would be a good candidate but it's not the best in it's price range.]]></description>
			<content:encoded><![CDATA[<div id="attachment_392" class="wp-caption alignnone" ><img class="size-full wp-image-392" title="ZTE Tania Smartphone" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/04/ZTE-Tania-smartphone.jpg" alt="Windows smartphone" width="400" height="600" /><p class="wp-caption-text">ZTE Tania Windows Smartphone</p></div>
<p>If you are thinking of a budget smartphone the <a href="http://www.amazon.co.uk/dp/B006W91FJS/ref=as_li_tf_til?tag=coffandvani-21" target="_blank">ZTE Tania</a> would be a good candidate but it&#8217;s not the best in it&#8217;s price range.</p>
<p>BUILD</p>
<p>Simply put, it&#8217;s a budget phone so physically it&#8217;s budget quality. Plastic, plastic &amp; more plastic. Which is not necessarily a bad thing, but it shouts cheap.</p>
<p>ZTE Tania is surprisingly light for it&#8217;s size.­ It is a bit bigger than the HTC Desire HD which for me is a quite a big phone  I have small hands so I find it a little uncomfortable to use it with one hand but it fits much better my husband&#8217;s hands.</p>
<p>SCREEN</p>
<p>The phone&#8217;s size allows for a nice large 4.3inch display. The touch screen is very good, bright, even outside in the sun you can see everything clearly on it.</p>
<p>SOUND</p>
<p>The in call volume and sound is OK, you can hear the person very clearly both with headphones and without, but you must use the ones provided with the phone. We tired several headphones from other smart phones and the quality of the sounds was not the same. The low side is the loud speaker, it is weak and you can hear distortion, even before reaching peak volumes</p>
<p>CAMERA</p>
<p>Nothing much to say here except budget.</p>
<p>MEMORY</p>
<p>The phone does not have a much memory, it has 4GB total with no memory card slot. After allowing for the system files and installed apps only a little bit more than 2GB is available for your use.</p>
<p>RADIO &amp; INTERNET</p>
<p>I find that wi-fi connection on ZTE Tania is much better than with couple other smartphones we have in the house. Mobile reception is also better than the HTC HD, I am able to use the phone in places that I can&#8217;t get connection with the other phone. Overall the radio on the Tania is quite impressive compared to the other in the house.</p>
<p>BATTERY / CHARGING</p>
<p>Powering up a large screen smartphone is no easy task on a battery, and the Tania is no exception it does not last long. That isn&#8217;t to say battery life is poor but it isn&#8217;t anything out of the ordinary. A plus is that uses a standard mini usb connection for charging so I don&#8217;t have to worry having yet another charger around the house.Unfortunately to connect to your PC—something you must do do to update or simply to add music— you must use the one provided with the phone, otherwise your computer may not recognize the device.</p>
<p>INTERFACE / OS</p>
<p>The WP7  interface is very nice, smooth and easy to use, even with lower powered phones such as this one response is smooth nimble. As it&#8217;s a sim free phone you don&#8217;t get the usual junk applications bundled onto the phone, which is a boon and in this case necessary given the meagre memory.</p>
<p>If you&#8217;re expecting to add loads of apps to the phone, you may be disappointed given the current lack of choice in the Marketplace coupled with the lack of space on your phone.</p>
<p>One major gripe I have with Windows Phone 7 is the dependence on Zune. WP7 doesn&#8217;t expose it&#8217;s file system to the user. Nor does it connect as a USB Mass Storage device, so you wouldn&#8217;t be able to copy files to it as you would another storage device. In order to copy pictures, music, and videos to your phone you must use Zune or the Mac connector.</p>
<div id="attachment_393" class="wp-caption alignnone" ><img class="size-full wp-image-393" title="ZTE Tania Windows phone" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/04/ZTE-Tania-Windows-phone.jpg" alt="ZTE Windows phone smartphone" width="600" height="600" /><p class="wp-caption-text">ZTE Tania Windows Smartphone</p></div>
<p>VERDICT</p>
<p>I am fully aware that at the price (£209.99 at the time of writing) expectations must be lowered. There is nothing glaringly wrong with it besides the small amount of memory but there are a lot of little things that grates even for a budget phone.</p>
<p><strong><strong>Budget smartphone &#8211; not the best in it&#8217;s price range.</strong></strong></p>
<p><em><strong>3 out of 5 stars</strong></em></p>
<p><em>Disclaimer: We have received this product free as a part of Amazon Vine™ Programme and you can find this article between our other reviews on <a href="https://www.amazon.co.uk/gp/cdp/member-reviews/A8EGXZQIIQTJH/ref=ya__26?ie=UTF8&amp;sort_by=MostRecentReview" target="_blank">Amazon website</a>.</em></p>
<p><em>Photos: courtesy of <a href="https://www.amazon.co.uk" target="_blank">Amazon.co.uk</a>.</em></p>
<img src="http://feeds.feedburner.com/~r/416Studios/~4/pguuCU4cPnI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.416studios.co.uk/journal/2012/zte-tania-windows-smartphone/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.416studios.co.uk/journal/2012/zte-tania-windows-smartphone</feedburner:origLink></item>
		<item>
		<title>London’s Photos</title>
		<link>http://feedproxy.google.com/~r/416Studios/~3/zLyF6WCoLUg/londons-photos</link>
		<comments>http://www.416studios.co.uk/journal/2012/londons-photos#comments</comments>
		<pubDate>Wed, 11 Jan 2012 21:47:32 +0000</pubDate>
		<dc:creator>Margot</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[autumn]]></category>
		<category><![CDATA[Bermondsey]]></category>
		<category><![CDATA[Camden]]></category>
		<category><![CDATA[Camden Canal]]></category>
		<category><![CDATA[Islington]]></category>
		<category><![CDATA[London]]></category>
		<category><![CDATA[London Bridge]]></category>
		<category><![CDATA[London bus]]></category>
		<category><![CDATA[North London]]></category>
		<category><![CDATA[Regent's Canal]]></category>
		<category><![CDATA[Tower Bridge]]></category>
		<category><![CDATA[winter]]></category>

		<guid isPermaLink="false">http://www.416studios.co.uk/journal/?p=253</guid>
		<description><![CDATA[Big Ben, HMS Belfast on Thames River, Old Routemaster Bus in Central London, Tower Bridge, Regent's Canal in Camden Town, Canary Wharf, Trafalgar Square and more...]]></description>
			<content:encoded><![CDATA[<div id="attachment_317" class="wp-caption alignnone" ><img class="size-full wp-image-317 " title="Bermondsey" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/01/bermondsey.jpg" alt="Bermondsey London boats morning light" width="600" height="400" /><p class="wp-caption-text">Bermondsey, London</p></div>
<div id="attachment_356" class="wp-caption alignnone" ><img class="size-full wp-image-356 " title="Big Ben" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/01/Big-Ben.jpg" alt="Big Ben London" width="600" height="400" /><p class="wp-caption-text">Big Ben, London</p></div>
<div id="attachment_315" class="wp-caption alignnone" ><img class="size-full wp-image-315   " title="North London" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/01/north-london.jpg" alt="North London" width="600" height="400" /><p class="wp-caption-text">Somewhere in North London</p></div>
<div id="attachment_309" class="wp-caption alignnone" ><img class="size-full wp-image-309   " title="HMS Belfast" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/01/london-bridge.jpg" alt="HMS Belfast Thames River" width="600" height="400" /><p class="wp-caption-text">HMS Belfast at Thames River</p></div>
<div id="attachment_320" class="wp-caption alignnone" ><img class="size-full wp-image-320   " title="London's Bus" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/01/London-bus.jpg" alt="Old Routemaster Bus Central London Bus" width="400" height="600" /><p class="wp-caption-text">Old Routemaster Bus, Central London</p></div>
<div id="attachment_322" class="wp-caption alignnone" ><img class="size-full wp-image-322 " title="London Tower Bridge" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/01/Lodnon-Tower-Bridge.jpg" alt="London Tower Bridge" width="600" height="400" /><p class="wp-caption-text">Tower Bridge, London</p></div>
<div id="attachment_324" class="wp-caption alignnone" ><img class="size-full wp-image-324 " title="Autumn in London" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/01/london-autumn.jpg" alt="North London Autumn " width="400" height="600" /><p class="wp-caption-text">Autumn in North London</p></div>
<div id="attachment_311" class="wp-caption alignnone" ><img class="size-full wp-image-311   " title="Regent's Canal Camden Town" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/01/camden-canal.jpg" alt="Regent's Canal Camden canal" width="600" height="400" /><p class="wp-caption-text">Regent&#39;s Canal, Camden Town, London</p></div>
<div id="attachment_360" class="wp-caption alignnone" ><img class="size-full wp-image-360 " title="Hornsey Road London" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/01/Hornsey-Road.jpg" alt="Hornsey Road in North London" width="600" height="398" /><p class="wp-caption-text">Hornsey Road in North London</p></div>
<div id="attachment_349" class="wp-caption alignnone" ><img class="size-full wp-image-349 " title="Canary Wharf London" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/01/Canary-Wharf.jpg" alt="Canary Wharf London" width="600" height="487" /><p class="wp-caption-text">Canary Wharf, London</p></div>
<div id="attachment_350" class="wp-caption alignnone" ><img class="size-full wp-image-350 " title="Canary Wharf London" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/01/Canary-Wharf-2.jpg" alt="London at night Canary Wharf" width="600" height="400" /><p class="wp-caption-text">London at night, Canary Wharf</p></div>
<div id="attachment_335" class="wp-caption alignnone" ><img class="size-full wp-image-335  " title="Seven Sisters Road" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/01/7-Sisters-Rd.jpg" alt="Seven Sisters Road North London" width="400" height="600" /><p class="wp-caption-text">Seven Sisters Road, North London</p></div>
<div id="attachment_326" class="wp-caption alignnone" ><img class="size-full wp-image-326  " title="Trafalgar Square" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/01/trafalgar-square.jpg" alt="London Trafalgar Square fountain" width="600" height="399" /><p class="wp-caption-text">Fountain at Trafalgar Square, London</p></div>
<div id="attachment_354" class="wp-caption alignnone" ><img class="size-full wp-image-354 " title="Mayor's Office" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/01/mayors-office.jpg" alt="Mayor's Office London" width="600" height="400" /><p class="wp-caption-text">Mayor&#39;s Office, London</p></div>
<div id="attachment_336" class="wp-caption alignnone" ><img class="size-full wp-image-336 " title="Tower Bridge London" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/01/Tower-Bridge-London.jpg" alt="Tower Bridge London Gherkin " width="600" height="400" /><p class="wp-caption-text">Tower Bridge, London</p></div>
<div id="attachment_358" class="wp-caption alignnone" ><img class="size-full wp-image-358 " title="Elthorne Park" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/01/Elthorne-Park.jpg" alt="Islington Elthorne Park" width="600" height="399" /><p class="wp-caption-text">Elthorne Park, Islington</p></div>
<div id="attachment_327" class="wp-caption alignnone" ><img class="size-full wp-image-327 " title="Winter 2010" src="http://www.416studios.co.uk/journal/wp-content/uploads/2012/01/winter-2010.jpg" alt="Sussex Way London winter snow" width="600" height="400" /><p class="wp-caption-text">Winter 2010, Sussex Way, London</p></div>
<ul>
<li>Photography: Michael DYER &amp; Margot DOLEWSKA DYER of 416 Studios.</li>
<li>Some of the images can be purchased via <a href="http://www.giftsbymarissa.com/artworks.php">Gifts by Marissa</a>.</li>
</ul>
<img src="http://feeds.feedburner.com/~r/416Studios/~4/zLyF6WCoLUg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.416studios.co.uk/journal/2012/londons-photos/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.416studios.co.uk/journal/2012/londons-photos</feedburner:origLink></item>
		<item>
		<title>Are SME’s harming their business with shoddy websites?</title>
		<link>http://feedproxy.google.com/~r/416Studios/~3/FzPoWWI3xhE/are-sme%e2%80%99s-harming-their-business-with-shoddy-websites</link>
		<comments>http://www.416studios.co.uk/journal/2011/are-sme%e2%80%99s-harming-their-business-with-shoddy-websites#comments</comments>
		<pubDate>Fri, 30 Sep 2011 12:07:09 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Musings]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[SME]]></category>
		<category><![CDATA[strategy]]></category>

		<guid isPermaLink="false">http://www.416studios.co.uk/journal/?p=249</guid>
		<description><![CDATA[Can SME's really afford not to have an appropriate site when it's so easy to go back to Google and choose a different company, one that has a better looking site?]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-415" title="webdesign by 416studios" src="http://www.416studios.co.uk/journal/wp-content/uploads/2011/09/416studios-webdesign.jpg" alt="website design 416 Studios London UK" width="600" height="400" /></p>
<p>According to research carried out by OnePoll, on behalf of BaseKit, 70 per cent of people claim they would not buy from a company with a badly designed website, yet many small businesses enterprises(SME) seem to think that any old website will do. Even worse is the misconception that their business can not benefit from a website.</p>
<p>It is vital that you represent you company professionally online. In this Internet age companies are expected to have a well thought out online presence and it is crucial that a website gives the correct impression of a business.</p>
<p>When you consider that the first stop to find a product or services is Google. Can SME&#8217;s really afford not to have an appropriate site when it&#8217;s so easy to go back to Google and choose a different company, one that has a better looking site?</p>
<p>The ease of finding businesses online means it is also very easy to find a business that&#8217;s not yours. Where you business is located is not as important as how it looks online. A website is the first impression a potential customer gets of a business, and a judgement on whether or not to use the services is usually made in a few seconds. In those few seconds aesthetics is the most influential factor in making that decision</p>
<p>The website is now the digital expression of the business. It is essential to marketing and sales, communications, branding and reputation, and customer service and support.</p>
<p>By allowing their business to be represented by a shoddy website, SME&#8217;s are running the risk of:</p>
<ul>
<li>Losing market share to competitors who have recognised the value of a good website, and have acquired a better site.</li>
<li>Damage to reputation and brand caused by the association of a bad website to the brand</li>
<li>Harming customer relationship when customers have difficulty completing tasks, caused by bad planning and design</li>
<li>Financial loss associated with customers turning away from your business, caused by poor web execution.</li>
</ul>
<p>SME&#8217;s must stop throwing away money, turning away customers, and damaging their reputation, paying more attention to their oft neglected website. In these austere times can we really afford to be represented by a bad website?</p>
<img src="http://feeds.feedburner.com/~r/416Studios/~4/FzPoWWI3xhE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.416studios.co.uk/journal/2011/are-sme%e2%80%99s-harming-their-business-with-shoddy-websites/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.416studios.co.uk/journal/2011/are-sme%e2%80%99s-harming-their-business-with-shoddy-websites</feedburner:origLink></item>
		<item>
		<title>Estimated Reading Time</title>
		<link>http://feedproxy.google.com/~r/416Studios/~3/AmhSmnwhhVM/estimated-reading-time</link>
		<comments>http://www.416studios.co.uk/journal/2011/estimated-reading-time#comments</comments>
		<pubDate>Tue, 10 May 2011 12:31:05 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[reading]]></category>
		<category><![CDATA[reading time]]></category>

		<guid isPermaLink="false">http://www.416studios.co.uk/journal/?p=234</guid>
		<description><![CDATA[As more and more websites us article excerpts with a link to full articles, it is important to use all the tools at your disposal to get users to make that valuable click.]]></description>
			<content:encoded><![CDATA[<p>As more and more websites us article excerpts with a link to full articles, it is important to use all the tools at your disposal to get users to make that valuable click. I&#8217;ve noticed on some sites the curators have included an estimated reading time which—without having to clickthrough—let&#8217;s the visitor know how much of their time reading the article might take.</p>
<p>So how do we implement this on a wordpress blog?</p>
<p>The short answer. Copy the following to you <strong>functions.php</strong> file.</p>
<p><code>function reading_time() {<br />
$mycontent = get_post(get_the_id())-&gt;post_content;<br />
$wordcount = round(str_word_count(strip_tags($mycontent)), -2);<br />
$upper = round(($wordcount / 250), 0);<br />
$lower = round(($wordcount / 180), 0);</code></p>
<p>if ($wordcount $output = __(&#8220;Estimated reading time: less than 2 mins&#8221;);<br />
} else {<br />
$output = sprintf(__(&#8220;Estimated reading time: %s &#8211; %s mins&#8221;), $upper, $lower);<br />
}<br />
if ($return) {<br />
return $output;<br />
} else {<br />
echo $output;<br />
}<br />
}</p>
<p>to use this in a post or index of posts simply invoke the function like so.</p>
<p><code> if (function_exists('reading_time')) {reading_time(); } </code></p>
<p>Were simply taking the number of words in the post and dividing it by the average reading words per minute(180-250wpm).</p>
<img src="http://feeds.feedburner.com/~r/416Studios/~4/AmhSmnwhhVM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.416studios.co.uk/journal/2011/estimated-reading-time/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.416studios.co.uk/journal/2011/estimated-reading-time</feedburner:origLink></item>
		<item>
		<title>WordPress How to: Change Post Dates</title>
		<link>http://feedproxy.google.com/~r/416Studios/~3/txSnQv8ORe8/wordpress-how-to-change-post-date</link>
		<comments>http://www.416studios.co.uk/journal/2011/wordpress-how-to-change-post-date#comments</comments>
		<pubDate>Wed, 12 Jan 2011 12:59:14 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[post date]]></category>
		<category><![CDATA[post dates]]></category>

		<guid isPermaLink="false">http://www.416studios.co.uk/journal/?p=216</guid>
		<description><![CDATA[Sometimes we can miss the most trivial of things, and even though changing the date stamp of a WordPress post is fairly straightforward...]]></description>
			<content:encoded><![CDATA[<p>Sometimes we can miss the most trivial of things, and even though changing the date stamp of a WordPress post is fairly straightforward, this was a problem that someone actually faced and to that person the solution was not so obvious.</p>
<p>You see having written several articles over the years, a client wanted to upload some to his new wordpress site. However he found that once he published those articles they would take on the current date, when what he wanted was the date those articles were originally written.</p>
<p>So how do we get wordpress to show the dates he wants and not the date it was actually posted on?</p>
<p>That&#8217;s where the post publish box comes in to play.</p>
<p><img class="aligncenter size-full wp-image-221" title="publish-box" src="http://www.416studios.co.uk/journal/wp-content/uploads/2011/02/publish-box.png" alt="" width="280" height="194" /></p>
<p>The buttons in the post publish box are self explanatory, however it&#8217;s pretty easy for new wordpress users to miss the <strong>edit</strong> links next to Status, Visibility and Publish. Even if they do see the link it is not immediately obvious what those links actually do.</p>
<p><img class="aligncenter size-full wp-image-225" title="publish-dates" src="http://www.416studios.co.uk/journal/wp-content/uploads/2011/02/publish-dates.png" alt="" width="280" height="259" /></p>
<p>For the purposes of this post we are interested in editing the publish date. Clicking on the edit link next to the <strong>Publish immediately </strong>text will bring up date fields which we can change to reflect the post date we want show on the blog, providing that the blog is set up to show post dates. This also allows you to schedule posts for future publication.</p>
<p>As with most things wordpress is pretty well thought out, and changing the date on your post is as simple as you would think.</p>
<img src="http://feeds.feedburner.com/~r/416Studios/~4/txSnQv8ORe8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.416studios.co.uk/journal/2011/wordpress-how-to-change-post-date/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.416studios.co.uk/journal/2011/wordpress-how-to-change-post-date</feedburner:origLink></item>
		<item>
		<title>Top 5 Web Annoyances</title>
		<link>http://feedproxy.google.com/~r/416Studios/~3/RqDffMvYSPY/top-5-web-annoyances</link>
		<comments>http://www.416studios.co.uk/journal/2010/top-5-web-annoyances#comments</comments>
		<pubDate>Wed, 23 Jun 2010 12:52:08 +0000</pubDate>
		<dc:creator>Margot</dc:creator>
				<category><![CDATA[Musings]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[annoyances]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[pop-ups]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.416studios.co.uk/journal/?p=193</guid>
		<description><![CDATA[If you spend any amount of time browsing the web, then you will from time to time come across a few things that are plain irritating.]]></description>
			<content:encoded><![CDATA[<p>If you spend any amount of time browsing the web, then you will from time to time come across a few things that are plain irritating. Having had one too many of those annoying pop ups recently, I thought I&#8217;d share my pet peeves here.</p>
<h3>Those stupid Flash ads that expand over content.</h3>
<p>It&#8217;s not enough for some ads to be flashy and irritating but just as you start reading the article they have to expand and cover what you were reading.</p>
<p>What do those people think? The only way I&#8217;d click you ad is accidentally, maybe that&#8217;s the point. Getting in my way is not the best way to endear me to your product.</p>
<p>What&#8217;s even worse are those with no immediately discernible close button aarrgh! In that case I close the window and vow never to return to that site again.</p>
<h3>Snap-shots.</h3>
<p>I hate snapshots, whoever came up with that idea should be shot. You see the link, you make the effort to move your mouse over it and… it&#8217;s not a link. What irritates me even more is when I use the middle button to scroll the pointer will inadvertently move over one of these dastardly things.</p>
<p>Why oh why use snap? It sucks resources, increases page loading time and has all that advertising that your visitors don&#8217;t really want.</p>
<p>Speaking of useless unnecessary ads</p>
<h3>What&#8217;s with those disgusting teeth whitening ads.</h3>
<p>You know the one, yes that one with the mouth full of nasty rotten teeth. The funny thing is that I mostly see that particular ad when visiting <strong>Food blogs</strong>. Not what I want to see next to pictures of food.</p>
<p>At the very least make sure the ads are relevant to your site&#8217;s niche.</p>
<h3>Comment systems.</h3>
<p>Why do comments have to open a new window?</p>
<p>Why do I have to sign in with a twitter, facebook, openID, Disquss account? Suppose I don&#8217;t have or want one.</p>
<p>Why is the Last comment first?</p>
<p>I understand the need for pagination, but every 10 comments? Seriously what are you trying to pull?</p>
<h3>Having have to scroll back up to the top of the post to leave a comment.</h3>
<p>You are kind enough to put the full posts on your front page, and I really appreciate that. However after reading your well written article don&#8217;t let me scroll all the way back to the top to leave a comment. A link to the comments at the bottom of the post would be lovely.</p>
<h3>Have more?</h3>
<p>I know I&#8217;ve missed out some —share yours.</p>
<img src="http://feeds.feedburner.com/~r/416Studios/~4/RqDffMvYSPY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.416studios.co.uk/journal/2010/top-5-web-annoyances/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.416studios.co.uk/journal/2010/top-5-web-annoyances</feedburner:origLink></item>
		<item>
		<title>How to Use the Javascript Libraries Included with WordPress</title>
		<link>http://feedproxy.google.com/~r/416Studios/~3/HtIB-8ONhAM/how-to-use-the-javascript-libraries-included-with-wordpress</link>
		<comments>http://www.416studios.co.uk/journal/2009/how-to-use-the-javascript-libraries-included-with-wordpress#comments</comments>
		<pubDate>Mon, 07 Dec 2009 20:29:06 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[wordpress functions]]></category>

		<guid isPermaLink="false">http://www.416studios.co.uk/journal/?p=106</guid>
		<description><![CDATA[There is a better safer way to include you javascript files in your wordpress themes. Using the <code>wp_enqueue()</code> function will prevent problems...]]></description>
			<content:encoded><![CDATA[<p>In order to use the wonderful jQuery library with your wordpress installation you could simply grab a copy put it on your server and link to it. However this could lead to trouble, when plugins need to use the jQuery library they will try to load it as well causing script collisions.</p>
<p>A better way or as the wordpress codec says a safer way to use the jQuery libraries or any of the included scripts is to use <a href="http://codex.wordpress.org/Function_Reference/wp_enqueue_script"><code>wp_register_script</code></a> or <a href="http://codex.wordpress.org/Function_Reference/wp_enqueue_script"><code>wp_enqueue_script</code></a>.</p>
<p><a href="http://codex.wordpress.org/Function_Reference/wp_enqueue_script#Default_scripts_included_with_WordPress">WordPress comes loaded with several libraries and scripts</a> for your enjoyment, including:</p>
<ul>
<li>Scriptalicious</li>
<li>jQuery</li>
<li>Prototype</li>
<li>Thickbox</li>
<li>jQuery UI</li>
</ul>
<p>The easiest way to load the jQuery library for would be to add the following code before the <code>wp_head()</code> function,</p>
<p><code>wp_enqueue_script('jquery');</code></p>
<p>It&#8217;s important to note that the wordpress loads the internal version of the jQuery library in <a href="http://docs.jquery.com/Using_jQuery_with_Other_Libraries">&#8220;no-conflict&#8221;</a> mode which means the “$” shortcut will not work. You could use “jQuery” instead of “$”, however if you really want to use that dollar sign then in your jQuery scripts use the following code.</p>
<p><code>jQuery(document).ready(function($) {<br />
// do jQuery stuff using $<br />
});</code></p>
<p>You can also specify the source of the script if it is not included with wordpress and load dependencies using <code>wp_enqueue_script</code>, the path to the script should be relative to the root directory of wordpress. The following example loads <code>candy.js</code> which depends on “scriptalicious” and “scriptalicious-slider”.</p>
<p><code> wp_enqueue_script('candy', WP_CONTENT_URL. '/themes/name-of-theme/js/candy.js', array('scriptalicious, scriptalicious-slider'), false, true);</code></p>
<p>The first paramenter is the script name, the second is the path to the script, the third parameter <code>array()</code> will load the files that <code>candy.js</code> needs. The names in this array are not the filenames but rather the <a href="http://codex.wordpress.org/Function_Reference/wp_enqueue_script#Default_scripts_included_with_WordPress">handles</a>, these will be loaded before <code>candy.js</code></p>
<p>After the dependencies parameter comes the version option, it&#8217;s a string specifying the version number of the script used if there are more than one version of the script.</p>
<p>The last parameter is the <code>wp_enqueue()</code> function is an option to load your script wherever the <code>wp_footer()</code> hook is located, it should be in the, uh —footer.</p>
<p>If this post helps you better understand the wp_enqueue function, let me know in the comments below.</p>
<img src="http://feeds.feedburner.com/~r/416Studios/~4/HtIB-8ONhAM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.416studios.co.uk/journal/2009/how-to-use-the-javascript-libraries-included-with-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.416studios.co.uk/journal/2009/how-to-use-the-javascript-libraries-included-with-wordpress</feedburner:origLink></item>
		<item>
		<title>URL ABC</title>
		<link>http://feedproxy.google.com/~r/416Studios/~3/F7G33bz6kTs/url-abc</link>
		<comments>http://www.416studios.co.uk/journal/2009/url-abc#comments</comments>
		<pubDate>Fri, 27 Nov 2009 21:55:48 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Musings]]></category>
		<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[time wasters]]></category>

		<guid isPermaLink="false">http://www.416studios.co.uk/journal/?p=98</guid>
		<description><![CDATA[A simple game: Go to the address bar in your favorite browser, and type one letter. Start with “a”, end with “z”.]]></description>
			<content:encoded><![CDATA[<p>A simple game from <a href="http://maxvoltar.com/articles/url-abc">Tim van Damme</a> Go to the address bar in your favorite browser, and type one letter. Start with “a”, end with “z”. What did you get?</p>
<ul>
<li>A:<a href="http://www.arsenal.com/home">Arsenal.com</a></li>
<li>B:<a href="http://boagworld.com/">Boagworld.com</a></li>
<li>C:<a href="http://www.coffeeandvanilla.com/">Coffeeandvanilla.com</a></li>
<li>D:<a href="http://www.darrenhoyt.com/blog/">Daren Hoyte</a></li>
<li>E:<a href="http://www.ebuyer.com/">Ebuyer</a></li>
<li>F:<a href="http://forums.slideshowpro.net/viewforum.php?id=28">Slideshowpro forums</a></li>
<li>G:<a href="http://www.guardian.co.uk">Guardian.co.uk</a></li>
<li>H:<a href="http://www.heartinternet.co.uk/">heartinternet.co.uk</a></li>
<li>I:<a href="http://www.bbc.co.uk/iplayer/">iPlayer</a></li>
<li>J:<a href="http://docs.jquery.com">Jquery.com</a></li>
<li>K:<a href="http://kuler.adobe.com/">Kuler</a></li>
<li>L:<a href="http://lite.facebook.com/">lite.facebook.com</a></li>
<li>M:<a href="http://www.marcobolognesi.co.uk">Marco Bolognesi</a></li>
<li>N:<a href="http://www.noupe.com">Noupe</a></li>
<li>O:<a href="https://oyster.tfl.gov.uk/oyster/entry.do">Oyster</a></li>
<li>P:phpmyadmin on localhost</li>
<li>Q: nothing for q</li>
<li>R:<a href="http://www.radiotimes.com">Radio times</a></li>
<li>S:ssp Director on localhost</li>
<li>T:<a href="http://www.twitter.com/wengerball">twitter.com</a></li>
<li>U:<a href="http://www.uxbooth.com/">UX booth</a></li>
<li>V:<a href="http://www.veelte.com/">veetle</a></li>
<li>W:<a href="http://www.wengerball.com/">Wengerball</a></li>
<li>X:<a href="http://www.xkcd.com">XKCD</a></li>
<li>Y:<a href="http://youtube.com">Youtube</a></li>
<li>Z:<a href="http://www.zeldman.com/">Zeldman.com</a></li>
</ul>
<img src="http://feeds.feedburner.com/~r/416Studios/~4/F7G33bz6kTs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.416studios.co.uk/journal/2009/url-abc/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.416studios.co.uk/journal/2009/url-abc</feedburner:origLink></item>
		<item>
		<title>Pixel Perfect Shapes</title>
		<link>http://feedproxy.google.com/~r/416Studios/~3/es0ZOC_-aMU/pixel-perfect-shapes</link>
		<comments>http://www.416studios.co.uk/journal/2009/pixel-perfect-shapes#comments</comments>
		<pubDate>Wed, 02 Sep 2009 13:46:40 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[line tool]]></category>
		<category><![CDATA[photoshop tips]]></category>
		<category><![CDATA[shape tool]]></category>
		<category><![CDATA[snap to pixel]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.416studios.co.uk/journal/?p=61</guid>
		<description><![CDATA[Every program has it's foibles, and photoshop is no exception. In this post we will show you how to get pixel perfect lines...]]></description>
			<content:encoded><![CDATA[<p>Have you ever tried adding a stoke to a rectangle in photoshop only to find out that it not even all the way around? No— well I have, and sometimes it&#8217;s the little things that make the difference.</p>
<p>The solution is found in the rounded rectangle options,</p>
<p><img class="alignnone size-full wp-image-79" title="snap-to-pixels-tool" src="http://www.416studios.co.uk/journal/wp-content/uploads/2009/09/snap-to-pixels-tool.gif" alt="snap-to-pixels-tool" width="400" height="250" /></p>
<p><strong>Rectangle snap to pixels</strong> — Snaps edges of a rectangle or rounded rectangle to the pixel boundaries.</p>
<p><a href="http://www.416studios.co.uk/journal/2009/pixel-perfect-shapes/snap-to-pixels-1" rel="attachment wp-att-64"><img class="alignnone size-full wp-image-64" title="snap-to-pixels-1" src="http://www.416studios.co.uk/journal/wp-content/uploads/2009/09/snap-to-pixels-1.jpg" alt="snap-to-pixels-1" width="400" height="250" /></a></p>
<p>The image above shows two square created with the shape tool, the shape on the left was done with the snap to pixel option checked, while the one on the right wasn&#8217;t.At this size there is no difference between the 2 shapes, but we can zoom in to see what really going on.</p>
<p><img class="alignnone size-full wp-image-70" title="snap-to-pix-zoom" src="http://www.416studios.co.uk/journal/wp-content/uploads/2009/09/snap-to-pix-zoom.gif" alt="snap-to-pix-zoom" width="400" height="250" /></p>
<p>Add a single pixel stoke to the shape and it really goes haywire.</p>
<p><img class="alignnone size-full wp-image-73" title="large-stroke" src="http://www.416studios.co.uk/journal/wp-content/uploads/2009/09/large-stroke.gif" alt="large-stroke" width="400" height="250" /></p>
<p>Notice how the stoke at the bottom is much thinner than the other sides. This is not magnified just a single pixel stroke on a rectangle created without the rectangle shape snap to pixel option.</p>
<p>Compare the two below.</p>
<p><img class="alignnone size-full wp-image-80" title="stroke-zoom" src="http://www.416studios.co.uk/journal/wp-content/uploads/2009/09/stroke-zoom1.gif" alt="stroke-zoom" width="400" height="250" /></p>
<p>The same option is available for the rounded rectangle tool as compared below</p>
<p><img class="alignnone size-full wp-image-75" title="snap-to-pix-curve" src="http://www.416studios.co.uk/journal/wp-content/uploads/2009/09/snap-to-pix-curve.gif" alt="snap-to-pix-curve" width="400" height="250" /></p>
<p>Now for the grand finale, it should be a snap to make a 1px line. Select line tool , set the weight to 1px and voila a perfect 1px line  —of course not.</p>
<p><img class="alignnone size-full wp-image-76" title="snap-to-pix-lines" src="http://www.416studios.co.uk/journal/wp-content/uploads/2009/09/snap-to-pix-lines.gif" alt="snap-to-pix-lines" width="400" height="155" /></p>
<p>There is no snap to pixel option with the line too, so how to fix this?</p>
<p>Ok so I cheated, this happens when you attempt to use the line tool with the document zoomed to more than 100%. Just make sure when you&#8217;re drawing that 1px line that the document is at 100% or less.</p>
<p>Hope you&#8217;ll find this post useful.</p>
<img src="http://feeds.feedburner.com/~r/416Studios/~4/es0ZOC_-aMU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.416studios.co.uk/journal/2009/pixel-perfect-shapes/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.416studios.co.uk/journal/2009/pixel-perfect-shapes</feedburner:origLink></item>
		<item>
		<title>Free Wallpaper</title>
		<link>http://feedproxy.google.com/~r/416Studios/~3/HWKohI0eLsE/free-wallpaper</link>
		<comments>http://www.416studios.co.uk/journal/2009/free-wallpaper#comments</comments>
		<pubDate>Wed, 10 Jun 2009 19:01:33 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[feebie]]></category>
		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://www.416studios.co.uk/journal/?p=29</guid>
		<description><![CDATA[Grab our first free wall paper, based on the work of Krak Fox and the music of Bob Marley. Available for all screen sizes including mobile devices.]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-40" title="summer-wallpaper1" src="http://www.416studios.co.uk/journal/wp-content/uploads/2009/06/summer-wallpaper1.jpg" alt="summer-wallpaper1" width="490" height="300" /></p>
<p>This is the first in what we plan to be a regular instalment of free wallpapers for your screens. This wallpaper is inspired by the work of <a href="http://krak-fox.deviantart.com/gallery/" target="_blank">Krak Fox (Garick Middleton) </a>.</p>
<ul>
<li><a href="http://www.416studios.co.uk/design/images/playground/summer-rainbow-800.jpg">800×600</a></li>
<li><a href="http://www.416studios.co.uk/design/images/playground/summer-rainbow-1024-640.jpg">1024×640</a></li>
<li><a href="http://www.416studios.co.uk/design/images/playground/summer-rainbow-1024-768.jpg">1024×768</a></li>
<li><a href="http://www.416studios.co.uk/design/images/playground/summer-rainbow-1152.jpg">1152×864</a></li>
<li><a href="http://www.416studios.co.uk/design/images/playground/summer-rainbow-1280-960.jpg">1280×960</a></li>
<li><a href="http://www.416studios.co.uk/design/images/playground/summer%20rainbow%201280.jpg">1280×1024</a></li>
<li><a href="http://www.416studios.co.uk/design/images/playground/summer-rainbow-1440.jpg">1440×900</a></li>
<li><a href="http://www.416studios.co.uk/design/images/playground/summer-rainbow-1600-1200.jpg">1600×1200</a></li>
<li><a href="http://www.416studios.co.uk/design/images/playground/summer-rainbow-1680.jpg">1680×1050</a></li>
<li><a href="http://www.416studios.co.uk/design/images/playground/summer-rainbow-1920.jpg">1920×1200</a></li>
<li><a href="http://www.416studios.co.uk/design/images/playground/summer-rainbow-1920-1440.jpg">1920×1440</a></li>
<li><a href="http://www.416studios.co.uk/design/images/playground/iphone-1.jpg">iPhone</a></li>
<li><a href="http://www.416studios.co.uk/design/images/playground/iphone-2.jpg">iPhone alternate</a></li>
</ul>
<img src="http://feeds.feedburner.com/~r/416Studios/~4/HWKohI0eLsE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.416studios.co.uk/journal/2009/free-wallpaper/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.416studios.co.uk/journal/2009/free-wallpaper</feedburner:origLink></item>
		<item>
		<title>5 Ways to Improve Your Website Traffic</title>
		<link>http://feedproxy.google.com/~r/416Studios/~3/G9Fk0-iqT9M/5-ways-to-improve-your-website-traffic</link>
		<comments>http://www.416studios.co.uk/journal/2009/5-ways-to-improve-your-website-traffic#comments</comments>
		<pubDate>Mon, 30 Mar 2009 10:29:40 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[S.E.O.]]></category>
		<category><![CDATA[SERP]]></category>
		<category><![CDATA[traffic]]></category>
		<category><![CDATA[traffic tips]]></category>

		<guid isPermaLink="false">http://www.416studios.co.uk/journal/?p=3</guid>
		<description><![CDATA[At 416 Studios we make sure your website is optimised for search engines, and develop strategies to drive new visitors to your website.]]></description>
			<content:encoded><![CDATA[<p>Once you have a website, you need to get people to it. Search Engine Optimisation (<acronym title="search engine optimization">SEO</acronym>) is key to getting your website noticed. At 416 Studios we make sure your website is optimised for search engines, and develop strategies to drive new visitors to your website. (<acronym title="search engine optimization">SEO</acronym>) marketing is a science unto itself, but there are simple techniques which can help your improve website ranking on <strong>Search Engine Result Pages</strong> (<acronym title="search engine results page&gt;S.E.R.P&lt;/acronym&gt;).&lt;/p&gt; &lt;p&gt;This top 5 list takes you in the right direction toward better &lt;acronym title=">S.E.R.P</acronym> ranking and will increase visitor numbers to your website. They are simple steps that some might take for granted, but if you want to do the right things to develop a successful website you should take on board this advice.</p>
<h3>Keyword Use in Title Tag</h3>
<p>Placing the targeted search term or phrase in the title tag of the web page&#8217;s HTML header.</p>
<p>Good titles help everyone. They help the search engine categorise your site, they help the searcher know what to expect from your page, thus helping to increase Click-Through Rate and they get better SERP (Search Engine Ranking Positions).</p>
<h3>An Efficient internal linking structure.</h3>
<p>Link Popularity within the Site&#8217;s Internal Link Structure &#8211; Refers to the number and importance of internal links pointing to the target page.</p>
<p>A good linking structure makes certain that important pages get enough emphasis in the same way good navigation structure on the web page helps visitors get around your site slickly.</p>
<h3>Global Link Popularity of Site</h3>
<p>The overall link weight/authority as measured by links from any and all sites across the web.</p>
<p>Visit popular sites in your category, leave comments and a link to your site. Spread the word, tell your friends, family, anyone who will listen to visit. Make use of social networks like Facebook, linkedin etc.</p>
<h3>Keyword Use in Body Text.</h3>
<p>Using the targeted search term in the visible, HTML text of the page</p>
<p>Yes, this is important, but do NOT, whatever you do, &#8216;spam&#8217; the targeted keyword(s). Only use the keyword phrase throughout the page where it makes sense. Search engines are sophisticated beasties and will apply topic analysis to learn what is truly relevant.</p>
<p>The web is ruled by content, and while it takes time to build a great body of content these simple tips can push our website a little bit further.</p>
<img src="http://feeds.feedburner.com/~r/416Studios/~4/G9Fk0-iqT9M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.416studios.co.uk/journal/2009/5-ways-to-improve-your-website-traffic/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.416studios.co.uk/journal/2009/5-ways-to-improve-your-website-traffic</feedburner:origLink></item>
	</channel>
</rss>

