<?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>SRJM.co.uk &#187; Web Design</title>
	<atom:link href="http://www.srjm.co.uk/journal/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.srjm.co.uk</link>
	<description>The online journal of digital artist and web designer Simon R.J. Mutton.</description>
	<lastBuildDate>Fri, 09 Jul 2010 20:56:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>HTML and CSS Fluid Transparent Rounded Corner Boxes</title>
		<link>http://www.srjm.co.uk/journal/2010/05/html-and-css-fluid-transparent-rounded-corner-boxes/</link>
		<comments>http://www.srjm.co.uk/journal/2010/05/html-and-css-fluid-transparent-rounded-corner-boxes/#comments</comments>
		<pubDate>Sun, 02 May 2010 21:47:29 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.srjm.co.uk/?p=893</guid>
		<description><![CDATA[<p>That's quite a lot to demand of a title, and a box on a website as well it seems. In my work I have had a couple of designs lately that have required me to think up a good and solid way of having four rounded corners in a box that is one of a couple of things: </p>
<ul><li>Totally fluid, as in it resizes in both axes in accordance with changing content size.</li><li>Each corner needs actual transparency to sit on gradient backgrounds.</li></ul>
<p>So what to do about the boxes having exhausted quite an extensive Google search and not finding a method that really suited me? Make one up of course.</p>
<p class="alignCentre"><img src="http://www.srjm.co.uk/images/rounded-corner-box-example.png" alt="Rounded corner CSS and XHTML box example" /></p>]]></description>
			<content:encoded><![CDATA[<p><strong>That&#8217;s quite a lot to demand of a title, and a box on a website as well it seems. In my work I have had a couple of designs lately that have required me to think up a good and solid way of having four rounded corners in a box that is one of a couple of things: </strong></p>
<ul>
<li>Totally fluid, as in it resizes in both axes in accordance with changing content size.</li>
<li>Each corner needs actual transparency to sit on gradient backgrounds.</li>
</ul>
<p>There are hundreds of methods posted online about how to do fancy corners on boxes using <abbr title="Cascading Style Sheets">CSS</abbr>, but quite a lot of them just don&#8217;t have transparency involved, or worse still use a hack here and there or use a sprinkling of absolutely positioned, empty divs.</p>
<p><img class="floatRight" src="http://www.srjm.co.uk/images/rounded-corner-box-example2.png" alt="Fluid rounded corner box example image" /></p>
<p><strong>So what to do about the boxes having exhausted quite an extensive Google search and not finding a method that really suited me? Make one up of course.</strong> For those of us still stuck supporting <abbr title="Internet Explorer 6">IE6</abbr> as well as a raft of other browsers and their various editions, while offering a text resizing facility on the site, this meant it has to be remarkably robust.</p>
<p>The following method is the one I made for four corners only, with no border fanciness. In fact the graphical requirements were so simple that actually all the corners are the same GIF file as a ball, used much like you would a sprite: <img src="http://www.srjm.co.uk/images/corners.gif" alt="GIF corner sprite" /></p>
<p><span id="more-893"></span><code>/* White boxes */<br />
div.box {<br />
<span class="oneTab">width: 100%;</span><br />
<span class="oneTab">margin: 0 0 10px 0;</span><br />
<span class="oneTab">overflow: hidden;</span><br />
<span class="oneTab">background: url(../images/common/corners.gif) no-repeat top left;</span><br />
}<br />
div.box div {background: url(../images/common/corners.gif) no-repeat top right;}<br />
div.box div div {background-position: bottom left;}<br />
div.box div div div {<br />
<span class="oneTab">background-position: bottom right;</span><br />
<span class="oneTab">padding: 6px 0;</span><br />
}<br />
div.box div div div div {<br />
<span class="oneTab">padding: 0;</span><br />
<span class="oneTab">background: #fff none;</span><br />
<span class="oneTab">position: relative;</span><br />
}<br />
div.box div div div div div {<br />
<span class="oneTab">margin: 0 8px;</span><br />
<span class="oneTab">top: -6px;</span><br />
}<br />
div.box div div div div div div {<br />
<span class="oneTab">margin: 0;</span><br />
<span class="oneTab">top: 12px;</span><br />
}<br />
div.box div div div div div div div {<br />
<span class="oneTab">top: -6px;</span><br />
<span class="oneTab">overflow: auto;</span><br />
<span class="oneTab">background: none;</span><br />
<span class="oneTab">width: 100%;</span><br />
}<br />
div.box div div div div div div div div {<br />
<span class="oneTab">top: 0;</span><br />
<span class="oneTab">width: auto;</span><br />
<span class="oneTab">padding: 0;</span><br />
}</code></p>
<p><strong>And then the XHTML:</strong></p>
<p><code>&lt;div class=&quot;box&quot;&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;&lt;div&gt;<br />
<span class="oneTab">&lt;strong&gt;Some sample content&lt;br /&gt;&lt;br /&gt;</span><br />
<span class="oneTab">Additional lines.&lt;/strong&gt;</span><br />
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</code></p>
<p><strong>Resulting in something like this:</strong></p>
<p class="alignCentre"><img src="http://www.srjm.co.uk/images/rounded-corner-box-example.png" alt="Rounded corner CSS and XHTML box example" /></p>
<p>Because I haven&#8217;t used floats or any form of containment yet this box will just happily expand to fill the width it is in, and will grow with the content inside it just like a div tag ought to. However you might like to float the outer div or give it a width in EM or percent to make use of this fluid-ness. It can be easily adapted and expanded for many cornered box purposes, since with a bit of additional markup I made one with a solid rounded corner border all the way around.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.srjm.co.uk/journal/2010/05/html-and-css-fluid-transparent-rounded-corner-boxes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Site, Old Browser</title>
		<link>http://www.srjm.co.uk/journal/2009/09/new-site-old-browser/</link>
		<comments>http://www.srjm.co.uk/journal/2009/09/new-site-old-browser/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 07:57:55 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.srjm.co.uk/?p=698</guid>
		<description><![CDATA[<p>Even though I started this new design with the feeling that I should just ignore Internet Explorer 6, I did realise that there were still visitors doomed to using this browser, either because of their hardware/operating system limitation, familiarity or their company's refusal to update. I also had all the bits and pieces for adapting a site for 5 and 6 compatibility already in place, and had been adding them as and when I recognised old scenarios that needed them.</p>
<p>So I took this opportunity to start up my old computer, which is running a pretty much clean install of Windows 98 updated as far as it was supported, all on a Pentium 4 with 512mb of RAM and the high-end Geforce 2 <abbr title="Graphical Processing Unit: the main processing chip on a graphics card.">GPU</abbr>: astronomical power compared to what 95 and 98 were intended to work with normally. And then there is Internet Explorer 6! </p>]]></description>
			<content:encoded><![CDATA[<p>Even though I started this new design with the feeling that I should just ignore Internet Explorer 6, I did realise that there were still visitors doomed to using this browser, either because of their hardware/operating system limitation, familiarity or their company&#8217;s refusal to update. I also had all the bits and pieces for adapting a site for 5 and 6 compatibility already in place, and had been adding them as and when I recognised old scenarios that needed them.</p>
<p>So I took this opportunity to start up my old computer, which is running a pretty much clean install of Windows 98 updated as far as it was supported, all on a Pentium 4 with 512mb of RAM and the high-end Geforce 2 <abbr title="Graphical Processing Unit: the main processing chip on a graphics card.">GPU</abbr>: astronomical power compared to what 95 and 98 were intended to work with normally. And then there is Internet Explorer 6! </p>
<p>I was a little bit astonished to discover that despite my fears that the new CSS would collapse in a heap, everything was generally rendering exactly where it was meant to be. The only issues were superficial ones, such as transparent PNGs rendering as grey which were easily fixed. In the end I did make an effort to ensure that users browsing with <abbr title="Internet Explorer 6">IE6</abbr> do have a reasonable experience.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.srjm.co.uk/journal/2009/09/new-site-old-browser/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Site Design Up and Running</title>
		<link>http://www.srjm.co.uk/journal/2009/09/new-site-design-up-and-running/</link>
		<comments>http://www.srjm.co.uk/journal/2009/09/new-site-design-up-and-running/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 09:42:25 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[General Stuff]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Artwork]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Vector]]></category>
		<category><![CDATA[Website Design]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.srjm.co.uk/?p=651</guid>
		<description><![CDATA[<p>So finally I've switched my website to the new design, with a hefty number of new bits and pieces being added so you'll have to bear with me for a little while as things get sorted out. Some of the bigger changes include integrating twitter (for which I have had an unused account for years) as a sort of microblogging tool, separating my university work from my professional portfolio and integrating a 'Related Posts' system which I have had in mind for a long time but have only just discovered a brilliant plugin that does all the hard work for me.</p>
<p class="alignCentre"><a href="http://www.flickr.com/photos/thanandyr/3944338052/" title="twitter-icons by srjm, on Flickr"><img src="http://farm3.static.flickr.com/2436/3944338052_06eae5aec0.jpg" width="500" height="371" alt="twitter-icons" /></a></p>]]></description>
			<content:encoded><![CDATA[<p>So finally I&#8217;ve switched my website to the new design, with a hefty number of new bits and pieces being added so you&#8217;ll have to bear with me for a little while as things get sorted out. Some of the bigger changes include integrating twitter (for which I have had an unused account for years) as a sort of microblogging tool, separating my university work from my professional portfolio and integrating a &#8216;Related Posts&#8217; system which I have had in mind for a long time but have only just discovered a brilliant plugin that does all the hard work for me.</p>
<p class="alignCentre"><a href="http://www.flickr.com/photos/thanandyr/3944338052/" title="twitter-icons by srjm, on Flickr"><img src="http://farm3.static.flickr.com/2436/3944338052_06eae5aec0.jpg" width="500" height="371" alt="twitter-icons" /></a></p>
<p class="imageCaption">Above is a shot of a couple of the images I&#8217;ve produced for new site features.</p>
<p>You can find that related posts plugin at <a href="http://wordpress.org/extend/plugins/similar-posts/">http://wordpress.org/extend/plugins/similar-posts/</a>. Another plugin by the same authors is one that shows a list of the most recent posts.  In the old design I had this functionality hardcoded into the theme footer but now it can be done with a single line of PHP.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.srjm.co.uk/journal/2009/09/new-site-design-up-and-running/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Added sIFR to the Site</title>
		<link>http://www.srjm.co.uk/journal/2009/09/added-sifr-to-the-site/</link>
		<comments>http://www.srjm.co.uk/journal/2009/09/added-sifr-to-the-site/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 14:50:06 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Flash and Actionscript]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.srjm.co.uk/?p=645</guid>
		<description><![CDATA[<p>Tired with the poor antialiasing observed in big header fonts, I decided to introduce sIFR to the site. Here's a preview shot allowing me to use High Tower Text as my page heading:</p>
<p class="alignCentre"><a href="http://www.flickr.com/photos/thanandyr/3933619965/" title="sIFR-preview by srjm, on Flickr"><img src="http://farm4.static.flickr.com/3494/3933619965_39646bfbc7_o.jpg" width="500" height="329" alt="sIFR-preview" /></a></p>]]></description>
			<content:encoded><![CDATA[<p>Tired with the poor antialiasing observed in big header fonts, I decided to introduce sIFR to the site. Here&#8217;s a preview shot allowing me to use High Tower Text as my page heading:</p>
<p class="alignCentre"><a href="http://www.flickr.com/photos/thanandyr/3933619965/" title="sIFR-preview by srjm, on Flickr"><img src="http://farm4.static.flickr.com/3494/3933619965_39646bfbc7_o.jpg" width="500" height="329" alt="sIFR-preview" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.srjm.co.uk/journal/2009/09/added-sifr-to-the-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New SRJM Logo Design</title>
		<link>http://www.srjm.co.uk/journal/2009/09/new-srjm-logo-design/</link>
		<comments>http://www.srjm.co.uk/journal/2009/09/new-srjm-logo-design/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 18:24:28 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Art and Photography]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Artwork]]></category>
		<category><![CDATA[Diagram]]></category>
		<category><![CDATA[Logo Design]]></category>
		<category><![CDATA[Sketch]]></category>
		<category><![CDATA[Vector]]></category>

		<guid isPermaLink="false">http://www.srjm.co.uk/?p=641</guid>
		<description><![CDATA[<p>I've started work on a new logo design for myself:</p>
<p class="alignCentre"><a href="http://www.flickr.com/photos/thanandyr/3919640262/" title="srjm-logo-start by srjm, on Flickr"><img src="http://farm4.static.flickr.com/3427/3919640262_b97a250c13.jpg" width="500" height="500" alt="srjm-logo-start" /></a></p>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve started work on a new logo design for myself:</p>
<p class="alignCentre"><a href="http://www.flickr.com/photos/thanandyr/3919640262/" title="srjm-logo-start by srjm, on Flickr"><img src="http://farm4.static.flickr.com/3427/3919640262_b97a250c13.jpg" width="500" height="500" alt="srjm-logo-start" /></a></p>
<p class="alignCentre"><a href="http://www.flickr.com/photos/thanandyr/3918591985/" title="Logo Design for SRJM by srjm, on Flickr"><img src="http://farm4.static.flickr.com/3487/3918591985_8b5c70f908.jpg" width="500" height="375" alt="Logo Design for SRJM" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.srjm.co.uk/journal/2009/09/new-srjm-logo-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Completed a Flash Drag and Drop Demo</title>
		<link>http://www.srjm.co.uk/journal/2009/09/completed-a-flash-drag-and-drop-demo/</link>
		<comments>http://www.srjm.co.uk/journal/2009/09/completed-a-flash-drag-and-drop-demo/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 12:11:48 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Diagram]]></category>
		<category><![CDATA[e-learning]]></category>
		<category><![CDATA[Flash and Actionscript]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://www.srjm.co.uk/?p=639</guid>
		<description><![CDATA[<p>Following applying for a position at spongeuk I had to produce a demonstration Flash piece creating a drag and drop e-learning game.</p>
<p class="alignCentre"><a href="http://www.srjm.co.uk/sponge.html"><img src="http://www.srjm.co.uk/images/sponge-flash-demo.jpg" alt="Sponge Drag and Drop Demo" /></a></p>
<p></p>]]></description>
			<content:encoded><![CDATA[<p>Following applying for a position at spongeuk I had to produce a demonstration Adobe Flash and Actionscript piece from a sample brief creating a drag and drop e-learning game.</p>
<p class="alignCentre"><a href="http://www.srjm.co.uk/portfolio/sponge/"><img src="http://www.srjm.co.uk/images/sponge-flash-demo.jpg" alt="Sponge Drag and Drop Demo" /></a></p>
<p>This involved forming an interface based on the style of their website and creating actionscripted animation for button and label motion, as well as learning a bit about SLR cameras myself in the process! I await to see if this demonstrates suitable skills for the position.</p>
<p>Update: the company was suitably impressed by this demo however my application was too late before they had to hire another person.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.srjm.co.uk/journal/2009/09/completed-a-flash-drag-and-drop-demo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Site Design Underway</title>
		<link>http://www.srjm.co.uk/journal/2009/08/new-site-design-underway/</link>
		<comments>http://www.srjm.co.uk/journal/2009/08/new-site-design-underway/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 07:15:21 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Art and Photography]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Artwork]]></category>
		<category><![CDATA[Screenshots]]></category>
		<category><![CDATA[Vector]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.srjm.co.uk/?p=633</guid>
		<description><![CDATA[<p>I have actually been slowly working on this (slowly being a bit of an understatement) for a while but keep having to put it off for other commitments. Usually this means I get a bit of time when I'm tired and not up to doing much else and a stint on Fallout III is only going to make things worse.</p>
<p>However here are a couple more screenshots of a general basic layout and more button-y bits since the last lot of menu icons!</p>
<p class="alignCentre"><a href="http://www.flickr.com/photos/thanandyr/3868552890/" title="Basic Layout by srjm, on Flickr"><img src="http://farm3.static.flickr.com/2512/3868552890_6286f7ce8e.jpg" width="500" height="286" alt="Basic Layout" /></a></p>]]></description>
			<content:encoded><![CDATA[<p>I have actually been slowly working on this (slowly being a bit of an understatement) for a while but keep having to put it off for other commitments. Usually this means I get a bit of time when I&#8217;m tired and not up to doing much else and a stint on Fallout III is only going to make things worse.</p>
<p>However here are a couple more screenshots of a general basic layout and more button-y bits since the last lot of menu icons!</p>
<p class="alignCentre"><a href="http://www.flickr.com/photos/thanandyr/3868552890/" title="Basic Layout by srjm, on Flickr"><img src="http://farm3.static.flickr.com/2512/3868552890_6286f7ce8e.jpg" width="500" height="286" alt="Basic Layout" /></a></p>
<p>Other plans include a bigger better blog post preview image, related posts links, using the excerpt field of posts and some form of proper search function that includes AJAX-ed suggestions.</p>
<p class="alignCentre"><a href="http://www.flickr.com/photos/thanandyr/3868749280/" title="magnify by srjm, on Flickr"><img src="http://farm3.static.flickr.com/2485/3868749280_15b2758911.jpg" width="500" height="457" alt="magnify" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.srjm.co.uk/journal/2009/08/new-site-design-underway/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>PHP, Adobe PDF and Server Response Headers</title>
		<link>http://www.srjm.co.uk/journal/2009/08/php-adobe-pdf-and-server-response-headers/</link>
		<comments>http://www.srjm.co.uk/journal/2009/08/php-adobe-pdf-and-server-response-headers/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 12:37:42 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.srjm.co.uk/?p=627</guid>
		<description><![CDATA[I&#8217;ve been rather busy lately producing the PHP backend code for a document storage website and when it came to the question of where to actually store the files the answer naturally was somewhere outside of public_html so that control could be limited using the user authentication already available for the PHP pages. This meant [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been rather busy lately producing the PHP backend code for a document storage website and when it came to the question of where to actually store the files the answer naturally was somewhere outside of public_html so that control could be limited using the user authentication already available for the PHP pages. This meant that PHP would have to deliver a response as if the actual file itself was being accessed.</p>
<p>It&#8217;s pretty easy to find how to send alternative headers and a the source data from a PDF file: for example <a href="http://uk3.php.net/manual/en/function.header.php">http://uk3.php.net/manual/en/function.header.php</a> Additionally, there is plenty of information out there if you want to use &#8216;Content-Disposition&#8217; to force the client&#8217;s browser to behave as if the file was a download rather than load Adobe Reader in the window itself.</p>
<p>However this was all fine until we discovered that Adobe Reader&#8217;s usual behaviour of displaying the first page and loading the document as it is being read was broken. This system is intended for some fairly large documents and the browser was choosing to download and cache the entire file before displaying anything. I knew immediately it would be something to do with the headers.</p>
<p>There is very little I could find that expanded on this issue, so using an online tool that can be found at <a href="http://www.askapache.com/online-tools/http-headers-tool/">http://www.askapache.com/online-tools/http-headers-tool/</a> I examined what response would be sent by accessing a PDF file directly from the server. Using this I could replicate the header in PHP and as I guessed, the issue was resolved:</p>
<p><code><br />
header('Accept-Ranges: bytes');<br />
header('Content-Length: '.$filesize);<br />
header('Connection: close');<br />
header('Content-Type: application/pdf');<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.srjm.co.uk/journal/2009/08/php-adobe-pdf-and-server-response-headers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wine Website Design Samples</title>
		<link>http://www.srjm.co.uk/journal/2009/08/wine-website-design-samples/</link>
		<comments>http://www.srjm.co.uk/journal/2009/08/wine-website-design-samples/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 18:55:19 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Art and Photography]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Artwork]]></category>
		<category><![CDATA[Vector]]></category>
		<category><![CDATA[Website Design]]></category>

		<guid isPermaLink="false">http://www.srjm.co.uk/?p=619</guid>
		<description><![CDATA[Here is a better sample of the graphics I have been working on after studying a number of sites suggested by the client as to the style they are looking for. Individual vine leaf vector graphics:]]></description>
			<content:encoded><![CDATA[<p>Here is a better sample of the graphics I have been working on after studying a number of sites suggested by the client as to the style they are looking for.</p>
<p class="alignCentre"><a href="http://www.flickr.com/photos/thanandyr/3792207249/" title="page-sample by srjm, on Flickr"><img src="http://farm4.static.flickr.com/3457/3792207249_941c026346.jpg" width="500" height="500" alt="page-sample" /></a></p>
<p>Individual vine leaf vector graphics:</p>
<p class="alignCentre"><a href="http://www.flickr.com/photos/thanandyr/3760865435/" title="grape-vine-leaves by srjm, on Flickr"><img src="http://farm4.static.flickr.com/3448/3760865435_2e4c6f2275.jpg" width="500" height="500" alt="grape-vine-leaves" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.srjm.co.uk/journal/2009/08/wine-website-design-samples/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Site Icons</title>
		<link>http://www.srjm.co.uk/journal/2009/07/new-site-icons/</link>
		<comments>http://www.srjm.co.uk/journal/2009/07/new-site-icons/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 14:21:57 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[Art and Photography]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Artwork]]></category>
		<category><![CDATA[Vector]]></category>

		<guid isPermaLink="false">http://www.srjm.co.uk/?p=614</guid>
		<description><![CDATA[A couple of preview screenshots of some of the vector icons I&#8217;ve been producing for the new website design:]]></description>
			<content:encoded><![CDATA[<p>A couple of preview screenshots of some of the vector icons I&#8217;ve been producing for the new website design:</p>
<p class="alignCentre"><a href="http://www.flickr.com/photos/thanandyr/3719677603/" title="icons-preview1 by srjm, on Flickr"><img src="http://farm4.static.flickr.com/3432/3719677603_c98d8e7ab7.jpg" width="500" height="332" alt="icons-preview1" /></a></p>
<p><span id="more-614"></span></p>
<p class="alignCentre"><a href="http://www.flickr.com/photos/thanandyr/3734098587/" title="website-icons by srjm, on Flickr"><img src="http://farm3.static.flickr.com/2541/3734098587_9344e2654f.jpg" width="500" height="170" alt="website-icons" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.srjm.co.uk/journal/2009/07/new-site-icons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
