<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Lithium Arts - Devizes, Wiltshire</title>
	<atom:link href="http://www.lithiumarts.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.lithiumarts.com</link>
	<description>Web Design, Technical Support, Web Development, Hosting, Email, Newsletters, Search Engine Optimisation.</description>
	<lastBuildDate>Wed, 18 Jan 2012 18:13:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Using JavaScript Instead of Flash</title>
		<link>http://www.lithiumarts.com/coding-articles/using-javascript-instead-of-flash</link>
		<comments>http://www.lithiumarts.com/coding-articles/using-javascript-instead-of-flash#comments</comments>
		<pubDate>Mon, 21 Nov 2011 01:18:31 +0000</pubDate>
		<dc:creator>Graham</dc:creator>
				<category><![CDATA[Coding Articles]]></category>

		<guid isPermaLink="false">http://www.lithiumarts.com/?p=1501</guid>
		<description><![CDATA[HTML &#038; CSS provides the bread and butter of a website, but when you want to add something cool you have two options, JavaScript or Flash. Whilst Flash is undoubtedly the most sophisticated option it requires a web browser plugin &#8230; <a href="http://www.lithiumarts.com/coding-articles/using-javascript-instead-of-flash">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>HTML &#038; CSS provides the bread and butter of a website, but when you want to add something cool you have two options, JavaScript or Flash. Whilst Flash is undoubtedly the most sophisticated option it requires a web browser plugin (which not all computers will have installed), and the development &#038; support costs are much higher. This is mainly due to the developer requiring an expensive application to compile the Flash binaries (costing about £400).</p>
<p>By comparison the JavaScript language is free to develop and requires no compiling, allowing quick updates. It is also more widely available to users as a lot of office computers do not pre-install Flash for security reasons.</p>
<p>The advent of <a href="http://www.w3schools.com/html5/html5_reference.asp" target="_blank">HTML5</a>, a web standard which is still being finalised, is providing a number of advanced functions which is making in-roads into Flash’s functionality and makes the argument for Flash a weaker one.</p>
<p>Considering the lack of Flash support on the iPhone, poor support on other mobile devices, and the recent announcement from Adobe (the makers of Flash) that they will be suspending development of Flash, it seems an increasingly simple statement that the days of Flash are coming to an end.</p>
<p>However, Flash is well proven, relatively well supported on desktops and can handle complex graphic manipulation very well. If style is more important than function then Flash has to be taken as a serious contender. That is, unless JavaScript can be proven to do the job just as (or almost) as well.</p>
<p>To that aim I set myself the task of producing a simple arcade game using nothing but JavaScript. Doing so also made it very easy to feed top scores back to the server for long-term storage.</p>
<p>I think the results turned out rather well. The game is fun and includes effective sprite collision detection with some subtle features such as adjustable deflections.<br /><br /></p>
<iframe src="http://www.lithiumarts.com/wp-content/uploads/chick_in_a_basket/index.php" width="716" height="520">
  <p>Your browser does not support iframes.</p>
</iframe>]]></content:encoded>
			<wfw:commentRss>http://www.lithiumarts.com/coding-articles/using-javascript-instead-of-flash/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom WordPress Avatars</title>
		<link>http://www.lithiumarts.com/tips-tricks/custom-wordpress-avatars</link>
		<comments>http://www.lithiumarts.com/tips-tricks/custom-wordpress-avatars#comments</comments>
		<pubDate>Thu, 29 Sep 2011 22:50:06 +0000</pubDate>
		<dc:creator>Graham</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.lithiumarts.com/?p=1483</guid>
		<description><![CDATA[This article will detail how to add custom default avatars to your WordPress installation. Many WordPress sites allow avatars in the comments section of pages and posts, but the default options are fairly limited. Avatar settings for your WordPress installation &#8230; <a href="http://www.lithiumarts.com/tips-tricks/custom-wordpress-avatars">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This article will detail how to add custom default avatars to your WordPress installation.</p>
<p>Many WordPress sites allow avatars in the comments section of pages and posts, but the default options are fairly limited.</p>
<span id="more-1483"></span>
<p>Avatar settings for your WordPress installation can be found in <i>Settings -> Discussion</i> page once logged into the WordPress admin screen.</p>
<p>Once <i>Avatar Display</i> has been set to <i>Show Avatars</i> your site will now display the default &#8220;Mystery Man&#8221; avatar unless the users have set up a <a href="http://en.gravatar.com/" target="_blank">Gravatar</a> logo.</p>
<p>Wouldn&#8217;t it be great if you could provide anonymous users with an avatar of your own design that matched the design of your site? Well here&#8217;s how&#8230;</p>
<p>You need to be familiar with your <i>functions.php</i> file in your WordPress theme. You can do it via the WordPress admin page and going to <i>Appearance -> Editor</i> and selecting the <i>function.php</i> from there, but I personally don&#8217;t recommend editing themes in this way.</p>
<p>My preference is to set up a development installation on your PC and then tinker with files on there using trusty old notepad (look out soon for an article on how to do this).</p>
<p>So, assuming you are happy editing <i>functions.php</i>, simply add the following piece of code and it&#8217;s job done.</p>

<div class="codebox" style="float: left; margin-bottom: 20px;"><code>
function newgravatar ($avatar_defaults)<br />
{<br />
&nbsp;$myavatar = get_bloginfo(&#39;template_directory&#39;) . &#39;/images/chicken.png&#39;;<br />
&nbsp;$avatar_defaults[$myavatar] = &quot;Chicken&quot;;<br />
&nbsp;return $avatar_defaults;<br />
}<br />
add_filter( &#39;avatar_defaults&#39;, &#39;newgravatar&#39; );
<!--formatted--></code></div>

<img src="http://www.lithiumarts.com/wp-content/uploads/tipsandtricks/wordpress_avatar.png" style="float: left; padding: 0px 20px 20px 0px;" alt="Avatar Admin Screen">
<p>I&#8217;ve saved the new avatar image in my theme&#8217;s image folder and called it chicken.png but you can save it anywhere you like.</p>
<p>For my site I&#8217;ve called the default avatar &#8220;Chicken&#8221;, this is how it will display in the admin screen, but again you can call it anything you like.</p>
<p>As you can see from the screen shot on the left, the new default avatar can now be selected. Anyone now posting to my site that doesn&#8217;t have a Gravatar avatar will now display as a chicken (it&#8217;s nothing personal, I just have chickens in my site to brighten it up).</p>
<p>The avatar can be any size, that is dependant on your theme stylesheet configuration, but default sizes are 40px by 40px and I would recommend sticking with this size.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lithiumarts.com/tips-tricks/custom-wordpress-avatars/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Double Chocolate Brownies</title>
		<link>http://www.lithiumarts.com/cakes-goodies/double-chocolate-brownies</link>
		<comments>http://www.lithiumarts.com/cakes-goodies/double-chocolate-brownies#comments</comments>
		<pubDate>Sun, 11 Sep 2011 01:50:31 +0000</pubDate>
		<dc:creator>Graham</dc:creator>
				<category><![CDATA[Cakes & Goodies]]></category>

		<guid isPermaLink="false">http://192.168.0.5/lithiumarts/?p=1102</guid>
		<description><![CDATA[These are brownies for the real chocoholic. Dark chocolate brownies filled with white chocolate chips. The middle of the brownies are deliciously gooey, so eat them quickly before they melt in your hand. Equipment Electric Food Mixer Scales Baking Tray(12&#8243; &#8230; <a href="http://www.lithiumarts.com/cakes-goodies/double-chocolate-brownies">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>These are brownies for the real chocoholic. Dark chocolate brownies filled with white chocolate chips. The middle of the brownies are deliciously gooey, so eat them quickly before they melt in your hand.</p>
<span id="more-1102"></span>
<div style="float: left; width: 220px;">
<a href="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_equipment.jpg" title="This is the equipment you'll need to make your brownies." rel="prettyPhoto[brownies]"><img class="thumb132" src="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_equipment.jpg" alt="This is the equipment you'll need to make your brownies."></a>
<a href="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_ingredients.jpg" title="Here are the ingredients you'll need to make your brownies." rel="prettyPhoto[brownies]"><img class="thumb132" src="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_ingredients.jpg" alt="Here are the ingredients you'll need to make your brownies."></a>
</div>

<div style="float: left; width: 220px;">
<p><b>Equipment</b></p>
<ul>
<li>Electric Food Mixer</li>
<li>Scales</li>
<li>Baking Tray<br />(12&#8243; by 8&#8243; by 2&#8243;)</li>
<li>Large Sauce Pan</li>
<li>Large Pyrex Bowl</li>
<li>Wooden Spoon</li>
<li>Spatula</li>
<li>Butter Knife</li>
<li>Fork</li>
</ul>
</div>

<div style="float: left; width: 220px;">
<p><b>Ingredients</b></p>
<ul>
<li>240g Plain Flour</li>
<li>400g Unsalted Butter</li>
<li>350g Caster Sugar</li>
<li>400g Dark Chocolate</li>
<li>300g White Chocolate</li>
<li>6 Free Range Eggs</li>
<li>1 tablespoon of Vanilla Extract</li>
</ul>
</div>

<div style="float: left; padding-bottom: 10px;">
<ol>
<li>Leave the butter and eggs on the kitchen counter to allow them to reach room temperature.</li>
<li>Turn on the oven to 180 degrees, or Gas Mark 4.</li>
<li>Using a butter knife chop up the white chocolate bars into small cubes (it doesn&#8217;t matter if they break up a little).</li>
<li>Break up the dark chocolate into large chunks. I strongly recommend eating a couple of chunks to keep you going.</li>
<a href="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_chocchips.jpg" title="Slab of white chocolate chopped up into chips." rel="prettyPhoto[brownies]"><img class="thumb132" src="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_chocchips.jpg" alt="Slab of white chocolate chopped up into chips."></a>
<a href="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_choccubes.jpg" title="Dark chocolate chunks - not all of them will make it into the pan (yum)." rel="prettyPhoto[brownies]"><img class="thumb132" src="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_choccubes.jpg" alt="Dark chocolate chunks - not all of them will make it into the pan (yum)."></a>
<a href="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_eggs.jpg" title="Break six eggs into a large Pyrex bowl." rel="prettyPhoto[brownies]"><img class="thumb132" src="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_eggs.jpg" alt="Break six eggs into a large pyrex bowl."></a>
<a href="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_eggsandsugar.jpg" title="Add the sugar to the egg mix." rel="prettyPhoto[brownies]"><img class="thumb132" src="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_eggsandsugar.jpg" alt="Add the sugar to the egg mix."></a>
<li>Place a piece of greaseproof paper in the baking tray. It doesn&#8217;t have to line all four sides, but leave enough at two ends to help pull the cooked brownies out of the baking tin.</li>
<li>Crack six eggs into a large pyrex bowl and give them a good stir.</li>
<li>Add the sugar to the mixed eggs, and a tablespoon of vanilla extract (I find the bottle cap makes a good measure).</li>
<li>Use the fork to stir the eggs, sugar, and vanilla extract.</li>
<a href="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_eggsandsugarmix.jpg" title="Add a cap full of vanilla extract and mix it together with a fork." rel="prettyPhoto[brownies]"><img class="thumb132" src="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_eggsandsugarmix.jpg" alt="Add a cap full of vanilla extract and mix it together with a fork."></a>
<a href="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_saucepan.jpg" title="Add the butter and dark chocolate to a saucepan and heat slowly until melted (keep stirring to avoid the chocolate from burning)." rel="prettyPhoto[brownies]"><img class="thumb132" src="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_saucepan.jpg" alt="Add the butter and dark chocolate to a saucepan and heat slowly until melted (keep stirring to avoid the chocolate from burning)."></a>
<a href="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_mixer.jpg" title="Blend the egg mix and melted chocolate together." rel="prettyPhoto[brownies]"><img class="thumb132" src="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_mixer.jpg" alt="Blend the egg mix and melted chocolate together."></a>
<a href="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_tray.jpg" title="Line a deep baking tray with greaseproof paper." rel="prettyPhoto[brownies]"><img class="thumb132" src="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_tray.jpg" alt="Line a deep baking tray with greaseproof paper."></a>
<li>Heat the butter and dark chocolate on the hob in the saucepan. Ensure you constantly stir the chocolate to prevent it from burning.</li>
<li>Pour the egg/sugar mix into the electric mixer and whilst mixing add the melted butter/chocolate mix.</li>
<li>Slowly add the flour to the brownie mix whilst it continues to by stirred by in the mixer.</li>
<li>Pour half the mixture into the baking tray, making sure it gets into all the corners.</li>
<a href="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_layer1.jpg" title="Pour half the brownie mix into the baking tray." rel="prettyPhoto[brownies]"><img class="thumb132" src="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_layer1.jpg" alt="Pour half the brownie mix into the baking tray."></a>
<a href="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_filling.jpg" title="Sprinkle the white chocolate chips evenly over the mix." rel="prettyPhoto[brownies]"><img class="thumb132" src="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_filling.jpg" alt="Sprinkle the white chocolate chips evenly over the mix."></a>
<a href="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_layer2.jpg" title="Pour the last of the brownie mix over the white chocolate chips." rel="prettyPhoto[brownies]"><img class="thumb132" src="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_layer2.jpg" alt="Pour the last of the brownie mix over the white chocolate chips."></a>
<a href="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_cooked.jpg" title="Cook for 25 minutes at 180 degrees or gas mark 4." rel="prettyPhoto[brownies]"><img class="thumb132" src="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_cooked.jpg" alt="Cook for 25 minutes at 180 degrees or gas mark 4."></a>
<li>Sprinkle the white chocolate chips evenly over the mix.</li>
<li>Pour the rest of the brownie mix into the baking tray, ensuring you cover all the chocolate chips.</li>
<li>Place the baking tray into the pre-heated oven and leave to cook for 25 minutes</li>
<li>Remove the baking tray from the oven and leave to cool. Once at room temperature place in the fridge for a couple of hours. This will make cutting up a lot easier as the middle will still be soft.</li>
<a href="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_cooled.jpg" title="Leave the brownies in the tray until cold, then remove from the tray." rel="prettyPhoto[brownies]"><img class="thumb132" src="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_cooled.jpg" alt="Leave the brownies in the tray until cold, then remove from the tray."></a>
<a href="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_cut.jpg" title="Cut the brownies to any size you like, I've gone for bite-size here." rel="prettyPhoto[brownies]"><img class="thumb132" src="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_cut.jpg" alt="Cut the brownies to any size you like, I've gone for bite-size here."></a>
<a href="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_finished.jpg" title="Not an overly glamorous presentation, but great as a quick treat or served with a scoop of ice cream!" rel="prettyPhoto[brownies]"><img class="thumb132" src="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_finished.jpg" alt="Not an overly glamorous presentation, but great as a quick treat or served with a scoop of ice cream!"></a>
<a href="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_washingup.jpg" title="If done right the kitchen shouldn't need much tidying up." rel="prettyPhoto[brownies]"><img class="thumb132" src="http://www.lithiumarts.com/wp-content/uploads/cooking_brownies/brownies_washingup.jpg" alt="If done right the kitchen shouldn't need much tidying up."></a>
<li>Run a knife along the two sides without the greaseproof paper and lift the brownies out and place on the counter.</li>
<li>Optional step: sprinkle the brownies with icing sugar using a sieve.</li>
<li>Cut the brownies into cubes. It&#8217;s up to you if they are great big slabs or bite size nibbles.</li>
<li>Don&#8217;t forget to tidy the kitchen. The great thing about brownies is how little mess it should have made. It just takes 5 mintues to clean up and hide the evidence in the dish washer.</li>
<li>Now comes the hard part, don&#8217;t touch them for a couple of days. I don&#8217;t know why, but they taste much better having been stored in the pantry for a couple of days.</li>
</ol>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lithiumarts.com/cakes-goodies/double-chocolate-brownies/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Summer Harvest 2011</title>
		<link>http://www.lithiumarts.com/veg-plot-news/summer-harvest-2011</link>
		<comments>http://www.lithiumarts.com/veg-plot-news/summer-harvest-2011#comments</comments>
		<pubDate>Sun, 14 Aug 2011 01:50:10 +0000</pubDate>
		<dc:creator>Graham</dc:creator>
				<category><![CDATA[Veg Plot News]]></category>

		<guid isPermaLink="false">http://192.168.0.5/lithiumarts/?p=1100</guid>
		<description><![CDATA[<p>All in all it's not been a good year in the garden. We lost our three hens to a fox in the Spring which had a big impact to our garden. The garden is a lot quieter now, and a lot less fun place to sit and relax.</p>
<p>On the veg front I moved my successful raspberries down to the allotment along with my blueberry bushes, and they haven't appreciated the move. We will have to see if they get themselves established next year.</p> <a href="http://www.lithiumarts.com/veg-plot-news/summer-harvest-2011">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div style="float: right; width: 505px;">
<p>All in all it&#8217;s not been a good year in the garden. We lost our three hens to a fox in the Spring which had a big impact to our garden. The garden is a lot quieter now, and a lot less fun place to sit and relax. The hen house was starting to show some signs of weather damage so we were thinking of replacing it with something new, come the spring we&#8217;ll see if there is enough space in the garden for some new chucks and fingers crossed we&#8217;ll be eating nice organic home produced eggs once more.</p>
<p>On the veg front I moved my successful raspberries down to the allotment along with my blueberry bushes, and they haven&#8217;t appreciated the move and neither have shown much interest in growing. They are currently holding their own, so hopefully they are just getting used to the new location and will kick into gear next Spring.</p>
<p>The onions didn&#8217;t suffer the same insect attacks from last year, but it was still a fairly un-dramatic crop, and no chance of the strings of onions we managed in our first year.</p>
<p>The sunflowers were a great success, but they haven&#8217;t produced big enough flower heads to produce sunflower seeds for the birds to feast on. I&#8217;m sure the bees have enjoyed them however. We were only going to plant a few but so many of the seedlings survived that we ended up planting the whole length of the garden.</p>
<p>I&#8217;ve never tried growing main crop potatoes in the ground, it sounds like a lot of work! Instead I go for second earlies in tubs on the patio. You need to make sure they get plenty of water as they tend to dry out quickly, but being on the patio means they are very easy to put the garden hose on them. It&#8217;s really satisfying to rummage around in the tubs and fish out lovely potatoes that can go straight into the steamer for a really fresh meal. The additional benefit of a number of potato tubs is that they store potatoes very well, almost in a <i>clamped</i> condition. We should be eating our own potatoes for number of months yet.</p>
<p>I don&#8217;t know why I grow tomatoes, I&#8217;m really not a fan of eating them raw and our Summers aren&#8217;t really long enough to ripen them. If I ever get a green house I&#8217;ll have a more serious attempt at growing them. However, there is nothing like the smell of a tomato plant when it&#8217;s in full bloom. Our green tomatoes are currently under newspaper in the garage, so we&#8217;ll see how well they ripen, otherwise it&#8217;ll be green tomato chutney for us.</p>
<p>Another repeat offender in our garden are squashes and pumpkins. I try them every year but haven&#8217;t had much luck with growing them from seed. We tried some garden centre bought plugs this year and half of them survived and are now slowly growing fruit. Fingers crossed this year we&#8217;ll be getting some butternut squash for making some lovely autumnal soup.</p>
<p>I didn&#8217;t think the runner beans were going to do very well this year, they seemed to be very slow at getting any decent growth. With only a short Summer things didn&#8217;t look good, but they&#8217;ve really caught up and it looks like we&#8217;re really going to have a bumper crop. There are still plenty of flowers on the plants, so it looks like we&#8217;ll be sharing our runners with the neighbours or we run the risk of turning into a runner bean!</p>
<p>Every year I plant Brussel sprouts with the aim of eating our own sprouts on Christmas Day, and every year I let the side down and have nothing to show for my efforts. This year isn&#8217;t doing too badly, daily checks for butterfly eggs has kept the caterpillars at bay. Checking for eggs is very easy and only takes a minute, just look under the leaves and if you find cluster of yellow eggs just run your fingernail across them and you&#8217;ll get them all off the leaf. The eggs won&#8217;t hatch on the ground so you can just flick them onto the soil. By doing this you can avoid the more icky task of trying to catch catepillers. There is a good guide with some photos <a href="http://www.vegetable-garden-guide.com/how-to-grow-brussel-sprouts.html" target="_blank">here</a>. We&#8217;ll now see if this year will see our first sprout harvest on Xmas morning.</p>
</div>

<div style="float: left; width: 205px; padding-bottom: 10px;">
<a href="http://www.lithiumarts.com/wp-content/uploads/veg201108/veg201108_onions.jpg" title="A modest crop of onions." rel="prettyPhoto[veg201108]"><img class="thumb" src="http://www.lithiumarts.com/wp-content/uploads/veg201108/veg201108_onions.jpg" alt="A modest crop of onions."></a>
<a href="http://www.lithiumarts.com/wp-content/uploads/veg201108/veg201108_sunflowers.jpg" title="Sunflowers planted to brighten up the veg plot." rel="prettyPhoto[veg201108]"><img class="thumb" src="http://www.lithiumarts.com/wp-content/uploads/veg201108/veg201108_sunflowers.jpg" alt="Sunflowers planted to brighten up the veg plot."></a>
<a href="http://www.lithiumarts.com/wp-content/uploads/veg201108/veg201108_potatoes.jpg" title="Potatoes planted in tubs on the patio are always reliable and are tasting great." rel="prettyPhoto[veg201108]"><img class="thumb" src="http://www.lithiumarts.com/wp-content/uploads/veg201108/veg201108_potatoes.jpg" alt="Potatoes planted in tubs on the patio are always reliable and are tasting great."></a>
<a href="http://www.lithiumarts.com/wp-content/uploads/veg201108/veg201108_tomatoes.jpg" title="A mass of tomatoes plants." rel="prettyPhoto[veg201108]"><img class="thumb" src="http://www.lithiumarts.com/wp-content/uploads/veg201108/veg201108_tomatoes.jpg" alt="A mass of tomatoes plants."></a>
<a href="http://www.lithiumarts.com/wp-content/uploads/veg201108/veg201108_tomatoes2.jpg" title="The fruit is just starting to ripen." rel="prettyPhoto[veg201108]"><img class="thumb" src="http://www.lithiumarts.com/wp-content/uploads/veg201108/veg201108_tomatoes2.jpg" alt="The fruit is just starting to ripen."></a>
<a href="http://www.lithiumarts.com/wp-content/uploads/veg201108/veg201108_squash.jpg" title="A hint of some Autumn promise, very young Squash fruit." rel="prettyPhoto[veg201108]"><img class="thumb" src="http://www.lithiumarts.com/wp-content/uploads/veg201108/veg201108_squash.jpg" alt="A hint of some Autumn promise, very young Squash fruit."></a>
<a href="http://www.lithiumarts.com/wp-content/uploads/veg201108/veg201108_runners.jpg" title="A mass of runner foliage and flowers is promising a long cropping season of beans." rel="prettyPhoto[veg201108]"><img class="thumb" src="http://www.lithiumarts.com/wp-content/uploads/veg201108/veg201108_runners.jpg" alt="A mass of runner foliage and flowers is promising a long cropping season of beans."></a>
<a href="http://www.lithiumarts.com/wp-content/uploads/veg201108/veg201108_beans.jpg" title="Picking beans beans on a regular basis now." rel="prettyPhoto[veg201108]"><img class="thumb" src="http://www.lithiumarts.com/wp-content/uploads/veg201108/veg201108_beans.jpg" alt="Picking beans beans on a regular basis now."></a>
<a href="http://www.lithiumarts.com/wp-content/uploads/veg201108/veg201108_sprouts.jpg" title="Having survived the caterpillars we might get some sprouts for Xmas dinner." rel="prettyPhoto[veg201108]"><img class="thumb" src="http://www.lithiumarts.com/wp-content/uploads/veg201108/veg201108_sprouts.jpg" alt="Having survived the caterpillars we might get some sprouts for Xmas dinner."></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.lithiumarts.com/veg-plot-news/summer-harvest-2011/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Wide Should A Website Be?</title>
		<link>http://www.lithiumarts.com/coding-articles/how-wide-should-a-website-be</link>
		<comments>http://www.lithiumarts.com/coding-articles/how-wide-should-a-website-be#comments</comments>
		<pubDate>Sun, 17 Jul 2011 01:41:02 +0000</pubDate>
		<dc:creator>Graham</dc:creator>
				<category><![CDATA[Coding Articles]]></category>

		<guid isPermaLink="false">http://localhost/lithiumarts/?p=24</guid>
		<description><![CDATA[The odd thing about the next big thing in web design is that us lesser mortals never see it coming until it hits us, but as soon as it does it makes perfect sense and we wonder why we didn&#8217;t &#8230; <a href="http://www.lithiumarts.com/coding-articles/how-wide-should-a-website-be">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The odd thing about <i>the next big thing</i> in web design is that us lesser mortals never see it coming until it hits us, but as soon as it does it makes perfect sense and we wonder why we didn&#8217;t think of it ourselves.</p>
<p>Well, I think for once I might be ahead of the curve on this one.</p><span id="more-24"></span>
<p>Website designers are always asking the question <i>which screen resolutions should I be catering for</i>? Or to put it another way, which is the most important screen resolution that most users will expect to view the site without needing to use a horizontal scroll bar.</p>
<p>The following table shows roughly when screen resolutions have become the defacto standard for web designers.</p>
<table>
<tr><th style="width: 20%;">Code</th><th style="width: 20%;">Width</th><th style="width: 20%;">Height</th><th>Year of Prominence</th></tr>
<tr><td>SXGA</td><td>1280</td><td>1024</td><td>2011</td></tr>
<tr><td>XGA</td><td>1024</td><td>768</td><td>2006</td></tr>
<tr><td>SVGA</td><td>800</td><td>600</td><td>2001</td></tr>
<tr><td>VGA</td><td>640</td><td>480</td><td>1992</td></tr>
</table>
<p>Since wide-screen laptops become more affordable a couple of years ago they have become the standard browsing device. So, the stance I&#8217;m now taking is that no new web site should be built around the 1024 pixel width any more.</p>
<p>There has been a strong rise of SXGA+ usage and since January 2011 the percentage of users with a screen resolution greater than 1024 pixels wide is 85%. An independent data source can be found at the <a href="http://www.w3schools.com/browsers/browsers_display.asp" target="_blank">www.w3schools.com</a> website.</p>
<p>That doesn&#8217;t mean we should ignore 15% of your user base, there are a number of things you can do to continue to support them.</p>
<ol>
<li>Ensure the website has at least one sidebar, ideally two. They contract the copy space into the width of a XGA screen thereby saving the user from the need to scroll left to right to view the main copy of the site.</li>
<li>All browsers can easily shrink screen content; ensure users are aware of this feature. Pressing CTRL &amp; Minus on Windows machines, and Command &amp; Minus on Apple Macs will do this. A couple of clicks will reduce the site to fit on a smaller screen.</li>
</ol>
<p>A website that makes the best use of the screen space will maximise the impact it has on the user. It also allows you to use a larger font size (I recommend 12px as a minimum) that makes your site easier to read for users with less than ideal eyesight.</p>
<p>There are those that recommend the use of dynamically resizing websites, and for a long time I was in favour of such sites. However, when a site has a strong graphical design it makes dynamically resizing sites hard to maintain. It can also prove difficult to get accurate screen sizes out of mobile devices, so it&#8217;s much easier to leave the screen resizing to the browser.</p>]]></content:encoded>
			<wfw:commentRss>http://www.lithiumarts.com/coding-articles/how-wide-should-a-website-be/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced

Served from: www.lithiumarts.com @ 2012-05-19 10:38:47 -->
